summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-05-03 05:40:31 +1000
committer Vas Crabb <vas@vastheman.com>2021-05-03 05:40:31 +1000
commit7bc5b9c9945fbb8af042a63cd66dbbf7f761dbd9 (patch)
tree494062a8457de983855293a37e4efb3d3b7bb15b
parent23b87373b67d491676edc654deeddbcd1b3b8b58 (diff)
layouts: Use self-closing tags for bounds and color elements.
-rw-r--r--src/frontend/mame/luaengine.cpp15
-rw-r--r--src/mame/layout/gamball.lay14
-rw-r--r--src/mame/layout/j6aceclb.lay234
-rw-r--r--src/mame/layout/j6big50.lay7
-rw-r--r--src/mame/layout/j6bigbukc.lay18
-rw-r--r--src/mame/layout/j6bigtopa.lay7
-rw-r--r--src/mame/layout/j6bnza.lay229
-rw-r--r--src/mame/layout/j6camelt.lay25
-rw-r--r--src/mame/layout/j6cascze.lay18
-rw-r--r--src/mame/layout/j6guabc.lay7
-rw-r--r--src/mame/layout/j6guabcl.lay438
-rw-r--r--src/mame/layout/j6impuls.lay3
-rw-r--r--src/mame/layout/j6impuls15.lay3
-rw-r--r--src/mame/layout/j6kungfu.lay7
-rw-r--r--src/mame/layout/j6mono60.lay96
-rw-r--r--src/mame/layout/j6mono6010.lay96
-rw-r--r--src/mame/layout/j6mono608.lay96
-rw-r--r--src/mame/layout/j6oxobin.lay2010
-rw-r--r--src/mame/layout/j6oxobin10.lay2010
-rw-r--r--src/mame/layout/j6quick.lay10
-rw-r--r--src/mame/layout/j6rico10.lay3947
-rw-r--r--src/mame/layout/j6snakes.lay312
-rw-r--r--src/mame/layout/j6sonic10.lay3771
-rw-r--r--src/mame/layout/j6stards.lay261
-rw-r--r--src/mame/layout/j6untch.lay3906
-rw-r--r--src/mame/layout/j6wizardd.lay303
-rw-r--r--src/mame/layout/jpmimpct.lay16
-rw-r--r--src/mame/layout/jpmsys5.lay17
-rw-r--r--src/mame/layout/m4actbnk.lay2193
-rw-r--r--src/mame/layout/m4actpak.lay2697
-rw-r--r--src/mame/layout/m4andybt.lay4803
-rw-r--r--src/mame/layout/m4andycp.lay2451
-rw-r--r--src/mame/layout/m4andyfh.lay939
-rw-r--r--src/mame/layout/m4andyge.lay1905
-rw-r--r--src/mame/layout/m4apachg.lay2976
-rw-r--r--src/mame/layout/m4tenten.lay1962
-rw-r--r--src/mame/layout/mpu3.lay8
-rw-r--r--src/mame/layout/mpu4.lay10
-rw-r--r--src/mame/layout/mpu4ext.lay18
-rw-r--r--src/mame/layout/sc1_vfd.lay22
-rw-r--r--src/mame/layout/sc2_vfd.lay12
41 files changed, 12652 insertions, 25220 deletions
diff --git a/src/frontend/mame/luaengine.cpp b/src/frontend/mame/luaengine.cpp
index ea0ad8fc3b9..2e93d725ed3 100644
--- a/src/frontend/mame/luaengine.cpp
+++ b/src/frontend/mame/luaengine.cpp
@@ -932,7 +932,7 @@ void lua_engine::initialize()
auto thread_type = emu.new_usertype<context>("thread", sol::call_constructor, sol::constructors<sol::types<>>());
thread_type.set("start", [](context &ctx, const char *scr) {
std::string script(scr);
- if(ctx.busy)
+ if (ctx.busy)
return false;
std::thread th([&ctx, script]() {
sol::state thstate;
@@ -954,19 +954,22 @@ void lua_engine::initialize()
thstate["status"] = ctx.result;
};
auto ret = func();
- if (ret.valid()) {
+ if (ret.valid())
+ {
const char *tmp = ret.get<const char *>();
if (tmp != nullptr)
ctx.result = tmp;
else
osd_printf_error("[LUA ERROR] in thread: return value must be string\n");
}
- else {
+ else
+ {
sol::error err = ret;
osd_printf_error("[LUA ERROR] in thread: %s\n", err.what());
}
}
- else {
+ else
+ {
sol::error err = res;
osd_printf_error("[LUA ERROR] when loading script for thread: %s\n", err.what());
}
@@ -978,13 +981,13 @@ void lua_engine::initialize()
return true;
});
thread_type.set("continue", [](context &ctx, const char *val) {
- if(!ctx.yield)
+ if (!ctx.yield)
return;
ctx.result = val;
ctx.sync.notify_all();
});
thread_type.set("result", sol::property([](context &ctx) -> std::string {
- if(ctx.busy && !ctx.yield)
+ if (ctx.busy && !ctx.yield)
return "";
return ctx.result;
}));
diff --git a/src/mame/layout/gamball.lay b/src/mame/layout/gamball.lay
index 3a422ff7580..aee55014e55 100644
--- a/src/mame/layout/gamball.lay
+++ b/src/mame/layout/gamball.lay
@@ -4,13 +4,13 @@ license:CC0
-->
<mamelayout version="2">
<element name="digit">
- <led7seg>
+ <led7seg>
<color red="1.0" green="0.0" blue="0.0" />
- </led7seg>
+ </led7seg>
</element>
<element name ="bezelblock">
<rect state ="0">
- <bounds x="0" y="0" width="1" height="1" />
+ <bounds x="0" y="0" width="1" height="1" />
<color red="0" green="0" blue="0" />
</rect>
</element>
@@ -464,12 +464,12 @@ license:CC0
</element>
<repeat count="16">
- <param name="n" start="15" increment="-1" />
- <param name="x" start="17" increment="7" />
+ <param name="n" start="15" increment="-1"/>
+ <param name="x" start="17" increment="7"/>
<element name="vfd~n~" ref="vfd0" state="0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"/>
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"/>
<bounds x="~x~" y="0" width="7" height="24"/>
</element>
</repeat>
diff --git a/src/mame/layout/j6aceclb.lay b/src/mame/layout/j6aceclb.lay
index dd997f4f39a..6354e0119a1 100644
--- a/src/mame/layout/j6aceclb.lay
+++ b/src/mame/layout/j6aceclb.lay
@@ -5308,76 +5308,58 @@
<bounds x="250" y="440" width="80" height="120"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="250.0000" y="440.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="250.0000" y="440.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="253.3333" y="441.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="253.3333" y="441.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="256.6667" y="443.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="256.6667" y="443.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="260.0000" y="445.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="260.0000" y="445.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="263.3333" y="446.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="263.3333" y="446.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="266.6667" y="448.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="266.6667" y="448.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="250.0000" y="480.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="250.0000" y="480.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="253.3333" y="481.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="253.3333" y="481.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="256.6667" y="483.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="256.6667" y="483.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="260.0000" y="485.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="260.0000" y="485.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="263.3333" y="486.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="263.3333" y="486.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="266.6667" y="488.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="266.6667" y="488.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="250.0000" y="520.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="250.0000" y="520.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="253.3333" y="521.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="253.3333" y="521.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="256.6667" y="523.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="256.6667" y="523.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="260.0000" y="525.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="260.0000" y="525.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="263.3333" y="526.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="263.3333" y="526.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="266.6667" y="528.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="266.6667" y="528.3333" width="46.6667" height="23.3333"/>
</element>
<element name="sreel1" ref="reel0" state="0">
<bounds x="250" y="440" width="80" height="120"/>
@@ -5386,76 +5368,58 @@
<bounds x="337" y="440" width="80" height="120"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="337.0000" y="440.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="337.0000" y="440.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="340.3333" y="441.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="340.3333" y="441.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="343.6667" y="443.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="343.6667" y="443.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="347.0000" y="445.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="347.0000" y="445.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="350.3333" y="446.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="350.3333" y="446.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="353.6667" y="448.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="353.6667" y="448.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="337.0000" y="480.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="337.0000" y="480.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="340.3333" y="481.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="340.3333" y="481.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="343.6667" y="483.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="343.6667" y="483.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="347.0000" y="485.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="347.0000" y="485.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="350.3333" y="486.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="350.3333" y="486.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="353.6667" y="488.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="353.6667" y="488.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="337.0000" y="520.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="337.0000" y="520.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="340.3333" y="521.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="340.3333" y="521.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="343.6667" y="523.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="343.6667" y="523.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="347.0000" y="525.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="347.0000" y="525.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="350.3333" y="526.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="350.3333" y="526.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="353.6667" y="528.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="353.6667" y="528.3333" width="46.6667" height="23.3333"/>
</element>
<element name="sreel2" ref="reel1" state="0">
<bounds x="337" y="440" width="80" height="120"/>
@@ -5464,76 +5428,58 @@
<bounds x="424" y="440" width="80" height="120"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="424.0000" y="440.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="424.0000" y="440.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="427.3333" y="441.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="427.3333" y="441.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="430.6667" y="443.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="430.6667" y="443.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="434.0000" y="445.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="434.0000" y="445.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="437.3333" y="446.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="437.3333" y="446.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="440.6667" y="448.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="440.6667" y="448.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="424.0000" y="480.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="424.0000" y="480.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="427.3333" y="481.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="427.3333" y="481.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="430.6667" y="483.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="430.6667" y="483.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="434.0000" y="485.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="434.0000" y="485.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="437.3333" y="486.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="437.3333" y="486.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="440.6667" y="488.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="440.6667" y="488.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="424.0000" y="520.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="424.0000" y="520.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="427.3333" y="521.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="427.3333" y="521.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="430.6667" y="523.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="430.6667" y="523.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="434.0000" y="525.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="434.0000" y="525.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="437.3333" y="526.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="437.3333" y="526.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="440.6667" y="528.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="440.6667" y="528.3333" width="46.6667" height="23.3333"/>
</element>
<element name="sreel3" ref="reel2" state="0">
<bounds x="424" y="440" width="80" height="120"/>
@@ -5542,76 +5488,58 @@
<bounds x="513" y="440" width="80" height="120"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_0" state="0">
- <bounds x="513.0000" y="440.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="513.0000" y="440.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_1" state="0">
- <bounds x="516.3333" y="441.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="516.3333" y="441.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_2" state="0">
- <bounds x="519.6667" y="443.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="519.6667" y="443.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_3" state="0">
- <bounds x="523.0000" y="445.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="523.0000" y="445.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_4" state="0">
- <bounds x="526.3333" y="446.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="526.3333" y="446.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_5" state="0">
- <bounds x="529.6667" y="448.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="529.6667" y="448.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="513.0000" y="480.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="513.0000" y="480.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="516.3333" y="481.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="516.3333" y="481.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="519.6667" y="483.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="519.6667" y="483.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="523.0000" y="485.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="523.0000" y="485.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="526.3333" y="486.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="526.3333" y="486.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="529.6667" y="488.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="529.6667" y="488.3333" width="46.6667" height="23.3333"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_0" state="0">
- <bounds x="513.0000" y="520.0000" width="80.0000" height="40.0000">
- </bounds>
+ <bounds x="513.0000" y="520.0000" width="80.0000" height="40.0000"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_1" state="0">
- <bounds x="516.3333" y="521.6667" width="73.3333" height="36.6667">
- </bounds>
+ <bounds x="516.3333" y="521.6667" width="73.3333" height="36.6667"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_2" state="0">
- <bounds x="519.6667" y="523.3333" width="66.6667" height="33.3333">
- </bounds>
+ <bounds x="519.6667" y="523.3333" width="66.6667" height="33.3333"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_3" state="0">
- <bounds x="523.0000" y="525.0000" width="60.0000" height="30.0000">
- </bounds>
+ <bounds x="523.0000" y="525.0000" width="60.0000" height="30.0000"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_4" state="0">
- <bounds x="526.3333" y="526.6667" width="53.3333" height="26.6667">
- </bounds>
+ <bounds x="526.3333" y="526.6667" width="53.3333" height="26.6667"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_5" state="0">
- <bounds x="529.6667" y="528.3333" width="46.6667" height="23.3333">
- </bounds>
+ <bounds x="529.6667" y="528.3333" width="46.6667" height="23.3333"/>
</element>
<element name="sreel4" ref="reel3" state="0">
<bounds x="513" y="440" width="80" height="120"/>
@@ -5620,28 +5548,22 @@
<bounds x="399" y="210" width="60" height="45"/>
</element>
<element name="lamp23" ref="reel_lamp_layer_0" state="0">
- <bounds x="399.0000" y="210.0000" width="60.0000" height="45.0000">
- </bounds>
+ <bounds x="399.0000" y="210.0000" width="60.0000" height="45.0000"/>
</element>
<element name="lamp23" ref="reel_lamp_layer_1" state="0">
- <bounds x="401.5000" y="211.8750" width="55.0000" height="41.2500">
- </bounds>
+ <bounds x="401.5000" y="211.8750" width="55.0000" height="41.2500"/>
</element>
<element name="lamp23" ref="reel_lamp_layer_2" state="0">
- <bounds x="404.0000" y="213.7500" width="50.0000" height="37.5000">
- </bounds>
+ <bounds x="404.0000" y="213.7500" width="50.0000" height="37.5000"/>
</element>
<element name="lamp23" ref="reel_lamp_layer_3" state="0">
- <bounds x="406.5000" y="215.6250" width="45.0000" height="33.7500">
- </bounds>
+ <bounds x="406.5000" y="215.6250" width="45.0000" height="33.7500"/>
</element>
<element name="lamp23" ref="reel_lamp_layer_4" state="0">
- <bounds x="409.0000" y="217.5000" width="40.0000" height="30.0000">
- </bounds>
+ <bounds x="409.0000" y="217.5000" width="40.0000" height="30.0000"/>
</element>
<element name="lamp23" ref="reel_lamp_layer_5" state="0">
- <bounds x="411.5000" y="219.3750" width="35.0000" height="26.2500">
- </bounds>
+ <bounds x="411.5000" y="219.3750" width="35.0000" height="26.2500"/>
</element>
<element name="sreel5" ref="reel4" state="0">
<bounds x="399" y="210" width="60" height="45"/>
diff --git a/src/mame/layout/j6big50.lay b/src/mame/layout/j6big50.lay
index 074857f4659..86853d44268 100644
--- a/src/mame/layout/j6big50.lay
+++ b/src/mame/layout/j6big50.lay
@@ -4143,12 +4143,11 @@
<bounds x="207" y="409" width="233" height="22"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="207" increment="15" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="207" increment="15"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="409" width="15" height="22">
- </bounds>
+ <bounds x="~x~" y="409" width="15" height="22"/>
</element>
</repeat>
<element name="label4" ref="label_4">
diff --git a/src/mame/layout/j6bigbukc.lay b/src/mame/layout/j6bigbukc.lay
index ab07044085a..070f68ffd4e 100644
--- a/src/mame/layout/j6bigbukc.lay
+++ b/src/mame/layout/j6bigbukc.lay
@@ -4626,28 +4626,22 @@
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="168.0000" y="235.0000" width="70" height="70">
- </bounds>
+ <bounds x="168.0000" y="235.0000" width="70" height="70"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="172.0000" y="238.0000" width="62" height="62">
- </bounds>
+ <bounds x="172.0000" y="238.0000" width="62" height="62"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="176.0000" y="241.0000" width="54" height="54">
- </bounds>
+ <bounds x="176.0000" y="241.0000" width="54" height="54"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="180.0000" y="244.0000" width="46" height="46">
- </bounds>
+ <bounds x="180.0000" y="244.0000" width="46" height="46"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="184.0000" y="247.0000" width="38" height="38">
- </bounds>
+ <bounds x="184.0000" y="247.0000" width="38" height="38"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="188" y="255" width="30" height="30">
- </bounds>
+ <bounds x="188" y="255" width="30" height="30"/>
</element>
<element name="sreel4" ref="reel3" state="0">
<bounds x="167" y="235" width="70" height="70"/>
diff --git a/src/mame/layout/j6bigtopa.lay b/src/mame/layout/j6bigtopa.lay
index ce3dcea8790..c08b860defc 100644
--- a/src/mame/layout/j6bigtopa.lay
+++ b/src/mame/layout/j6bigtopa.lay
@@ -4924,12 +4924,11 @@
<bounds x="229" y="371" width="272" height="30"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="229" increment="17" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="229" increment="17"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="371" width="17" height="30">
- </bounds>
+ <bounds x="~x~" y="371" width="17" height="30"/>
</element>
</repeat>
<element name="label5" ref="label_5">
diff --git a/src/mame/layout/j6bnza.lay b/src/mame/layout/j6bnza.lay
index f721af50000..650a489ec6d 100644
--- a/src/mame/layout/j6bnza.lay
+++ b/src/mame/layout/j6bnza.lay
@@ -3230,12 +3230,10 @@
</element>
<element name="label_15">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="Red 7">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -3244,12 +3242,10 @@
</element>
<element name="label_16">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="Blue 7">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -3258,12 +3254,10 @@
</element>
<element name="label_17">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="JPM">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -3272,12 +3266,10 @@
</element>
<element name="label_18">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="Melon">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -3286,12 +3278,10 @@
</element>
<element name="label_19">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="Grapes">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -3300,12 +3290,10 @@
</element>
<element name="label_20">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="Mixed 7">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -3314,12 +3302,10 @@
</element>
<element name="label_21">
<rect state="0">
- <color red="0.30" green="0.30" blue="0.30">
- </color>
+ <color red="0.30" green="0.30" blue="0.30"/>
</rect>
<rect state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</rect>
<text string="Grapes">
<color red="1.0" green="1.0" blue="1.0"/>
@@ -5344,76 +5330,58 @@
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="273.0000" y="449.0000" width="80.0000" height="65.3333">
- </bounds>
+ <bounds x="273.0000" y="449.0000" width="80.0000" height="65.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="277.3333" y="451.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="277.3333" y="451.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="280.6667" y="454.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="280.6667" y="454.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="284.0000" y="456.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="284.0000" y="456.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="288.3333" y="459.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="288.3333" y="459.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="291.6667" y="462.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="291.6667" y="462.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="273.0000" y="512.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="273.0000" y="512.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="277.3333" y="514.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="277.3333" y="514.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="280.6667" y="517.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="280.6667" y="517.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="284.0000" y="520.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="284.0000" y="520.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="288.3333" y="522.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="288.3333" y="522.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="291.6667" y="525.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="291.6667" y="525.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="273.0000" y="575.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="273.0000" y="575.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="277.3333" y="578.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="277.3333" y="578.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="280.6667" y="580.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="280.6667" y="580.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="284.0000" y="583.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="284.0000" y="583.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="288.3333" y="586.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="288.3333" y="586.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="291.6667" y="588.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="291.6667" y="588.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel1" ref="reel0" state="0">
<bounds x="273" y="449" width="80" height="190"/>
@@ -5423,76 +5391,58 @@
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="374.0000" y="449.0000" width="80.0000" height="65.3333">
- </bounds>
+ <bounds x="374.0000" y="449.0000" width="80.0000" height="65.3333"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="377.3333" y="451.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="377.3333" y="451.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="380.6667" y="454.3778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="380.6667" y="454.3778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="384.0000" y="456.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="384.0000" y="456.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="388.3333" y="459.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="388.3333" y="459.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="391.6667" y="462.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="391.6667" y="462.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="374.0000" y="512.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="374.0000" y="512.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="377.3333" y="514.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="377.3333" y="514.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="380.6667" y="517.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="380.6667" y="517.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="384.0000" y="520.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="384.0000" y="520.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="388.3333" y="522.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="388.3333" y="522.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="391.6667" y="525.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="391.6667" y="525.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="374.0000" y="575.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="374.0000" y="575.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="377.3333" y="578.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="377.3333" y="578.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="380.6667" y="580.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="380.6667" y="580.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="384.0000" y="583.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="384.0000" y="583.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="388.3333" y="586.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="388.3333" y="586.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="391.6667" y="588.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="391.6667" y="588.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel2" ref="reel1" state="0">
<bounds x="374" y="449" width="80" height="190"/>
@@ -5501,76 +5451,58 @@
<bounds x="479" y="449" width="80" height="190"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="479.0000" y="449.0000" width="80.0000" height="65.3333">
- </bounds>
+ <bounds x="479.0000" y="449.0000" width="80.0000" height="65.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="482.3333" y="451.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="482.3333" y="451.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="485.6667" y="454.4828" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="485.6667" y="454.4828" width="66.6667" height="52.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="489.0000" y="456.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="489.0000" y="456.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="493.3333" y="459.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="493.3333" y="459.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="496.6667" y="462.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="496.6667" y="462.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="479.0000" y="512.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="479.0000" y="512.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="482.3333" y="514.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="482.3333" y="514.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="485.6667" y="517.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="485.6667" y="517.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="489.0000" y="520.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="489.0000" y="520.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="493.3333" y="522.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="493.3333" y="522.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="496.6667" y="525.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="496.6667" y="525.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="479.0000" y="575.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="479.0000" y="575.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="482.3333" y="578.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="482.3333" y="578.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="485.6667" y="580.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="485.6667" y="580.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="489.0000" y="583.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="489.0000" y="583.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="493.3333" y="586.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="493.3333" y="586.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="496.6667" y="588.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="496.6667" y="588.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel3" ref="reel2" state="0">
<bounds x="479" y="449" width="80" height="190"/>
@@ -5579,28 +5511,22 @@
<bounds x="202" y="135" width="80" height="80"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="202.0000" y="135.0000" width="80.0000" height="80.0000">
- </bounds>
+ <bounds x="202.0000" y="135.0000" width="80.0000" height="80.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="205.1667" y="138.9583" width="75.6667" height="61.0833">
- </bounds>
+ <bounds x="205.1667" y="138.9583" width="75.6667" height="61.0833"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="208.3333" y="142.9167" width="69.3333" height="56.1667">
- </bounds>
+ <bounds x="208.3333" y="142.9167" width="69.3333" height="56.1667"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="211.5000" y="146.8750" width="64.0000" height="50.2500">
- </bounds>
+ <bounds x="211.5000" y="146.8750" width="64.0000" height="50.2500"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.6667" y="150.8333" width="59.6667" height="44.3333">
- </bounds>
+ <bounds x="214.6667" y="150.8333" width="59.6667" height="44.3333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.8333" y="154.7917" width="55.3333" height="38.20867">
- </bounds>
+ <bounds x="217.8333" y="154.7917" width="55.3333" height="38.20867"/>
</element>
<element name="sreel4" ref="reel3" state="0">
<bounds x="202" y="135" width="80" height="80"/>
@@ -6549,12 +6475,11 @@
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="295" increment="17" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="295" increment="17"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="320" width="17" height="30">
- </bounds>
+ <bounds x="~x~" y="320" width="17" height="30"/>
</element>
</repeat>
diff --git a/src/mame/layout/j6camelt.lay b/src/mame/layout/j6camelt.lay
index 83d979bb69d..926eab72574 100644
--- a/src/mame/layout/j6camelt.lay
+++ b/src/mame/layout/j6camelt.lay
@@ -3117,28 +3117,22 @@
<bounds x="253" y="152" width="59" height="59"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="253.0000" y="153.0000" width="140.0000" height="50.0000">
- </bounds>
+ <bounds x="253.0000" y="153.0000" width="140.0000" height="50.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="258.8333" y="154.0833" width="128.3333" height="45.8333">
- </bounds>
+ <bounds x="258.8333" y="154.0833" width="128.3333" height="45.8333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="264.6667" y="156.1667" width="116.6667" height="41.6667">
- </bounds>
+ <bounds x="264.6667" y="156.1667" width="116.6667" height="41.6667"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="270.5000" y="158.2500" width="105.0000" height="37.5000">
- </bounds>
+ <bounds x="270.5000" y="158.2500" width="105.0000" height="37.5000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="276.3333" y="160.3333" width="93.3333" height="33.3333">
- </bounds>
+ <bounds x="276.3333" y="160.3333" width="93.3333" height="33.3333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="282.1667" y="162.4167" width="81.6667" height="29.1667">
- </bounds>
+ <bounds x="282.1667" y="162.4167" width="81.6667" height="29.1667"/>
</element>
<element name="sreel4" ref="reel3" state="0">
<bounds x="253" y="152" width="59" height="59"/>
@@ -3981,12 +3975,11 @@
<bounds x="149" y="347" width="272" height="30"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="149" increment="17" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="149" increment="17"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="347" width="17" height="30">
- </bounds>
+ <bounds x="~x~" y="347" width="17" height="30"/>
</element>
</repeat>
<element name="label83" ref="label_83">
diff --git a/src/mame/layout/j6cascze.lay b/src/mame/layout/j6cascze.lay
index ce53ed0b712..409d2d80037 100644
--- a/src/mame/layout/j6cascze.lay
+++ b/src/mame/layout/j6cascze.lay
@@ -4927,28 +4927,22 @@
<bounds x="5" y="180" width="80" height="80"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="5.0000" y="180.0000" width="80" height="80">
- </bounds>
+ <bounds x="5.0000" y="180.0000" width="80" height="80"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="13.0000" y="188.0000" width="72" height="72">
- </bounds>
+ <bounds x="13.0000" y="188.0000" width="72" height="72"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="21.0000" y="196.0000" width="64" height="64">
- </bounds>
+ <bounds x="21.0000" y="196.0000" width="64" height="64"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="29.0000" y="204.0000" width="56" height="56">
- </bounds>
+ <bounds x="29.0000" y="204.0000" width="56" height="56"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="37.0000" y="212.0000" width="48" height="48">
- </bounds>
+ <bounds x="37.0000" y="212.0000" width="48" height="48"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="45" y="200" width="40" height="40">
- </bounds>
+ <bounds x="45" y="200" width="40" height="40"/>
</element>
<element name="sreel4" ref="reel3" state="0">
<bounds x="5" y="180" width="80" height="80"/>
diff --git a/src/mame/layout/j6guabc.lay b/src/mame/layout/j6guabc.lay
index f81c4a77f93..97bba6af150 100644
--- a/src/mame/layout/j6guabc.lay
+++ b/src/mame/layout/j6guabc.lay
@@ -5540,12 +5540,11 @@
<bounds x="434" y="423" width="272" height="30"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="434" increment="17" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="434" increment="17"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="423" width="17" height="30">
- </bounds>
+ <bounds x="~x~" y="423" width="17" height="30"/>
</element>
</repeat>
<element name="label61" ref="label_61">
diff --git a/src/mame/layout/j6guabcl.lay b/src/mame/layout/j6guabcl.lay
index e32a20532a2..4af0850b8a5 100644
--- a/src/mame/layout/j6guabcl.lay
+++ b/src/mame/layout/j6guabcl.lay
@@ -2370,444 +2370,342 @@
<element name="lamp_55_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_55_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X Mixed Bar &#xA3;15">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X Grapes &#xA3;25">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_64_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X JPM &#xA3;50">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X Single Bar &#xA3;75">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_142_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_142_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X Triple Bar &#xA3;150">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_140_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_140_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4x GUAB &#xA3;250">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_92_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X Double Bar &#xA3;100">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_242_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_242_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Cherry &#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_240_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_240_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Mixed Bar &#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_230_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_230_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Grapes &#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_228_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_228_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X JPM &#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_221_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_221_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Single Bar &#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_219_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_219_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Double Bar &#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_217_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_217_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Triple Bar &#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_215_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_215_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X GUAB &#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_49_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3X Cashpot &#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4X Cherry &#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
@@ -3093,36 +2991,28 @@
</element>
<element name="colour_button_172_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_172">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_148">
<text string="4X Cashpot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
@@ -5302,12 +5192,10 @@
<bounds x="176" y="447" width="80" height="160"/>
</element>
<element name="lamp14" ref="colour_button_171_border" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="723" y="6" width="52" height="27">
- </bounds>
+ <bounds x="723" y="6" width="52" height="27"/>
</element>
<element name="lamp14" ref="colour_button_171" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="725" y="8" width="48" height="23">
- </bounds>
+ <bounds x="725" y="8" width="48" height="23"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
@@ -5746,140 +5634,106 @@
<bounds x="193" y="411" width="298" height="15"/>
</element>
<element name="lamp55" ref="lamp_55_1_border" state="0">
- <bounds x="775" y="208" width="142" height="37">
- </bounds>
+ <bounds x="775" y="208" width="142" height="37"/>
</element>
<element name="lamp55" ref="lamp_55_1" state="0">
- <bounds x="777" y="210" width="138" height="33">
- </bounds>
+ <bounds x="777" y="210" width="138" height="33"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="775" y="174" width="142" height="37">
- </bounds>
+ <bounds x="775" y="174" width="142" height="37"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="777" y="176" width="138" height="33">
- </bounds>
+ <bounds x="777" y="176" width="138" height="33"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="775" y="140" width="142" height="37">
- </bounds>
+ <bounds x="775" y="140" width="142" height="37"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="777" y="142" width="138" height="33">
- </bounds>
+ <bounds x="777" y="142" width="138" height="33"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="775" y="106" width="142" height="37">
- </bounds>
+ <bounds x="775" y="106" width="142" height="37"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="777" y="108" width="138" height="33">
- </bounds>
+ <bounds x="777" y="108" width="138" height="33"/>
</element>
<element name="lamp142" ref="lamp_142_1_border" state="0">
- <bounds x="775" y="38" width="142" height="37">
- </bounds>
+ <bounds x="775" y="38" width="142" height="37"/>
</element>
<element name="lamp142" ref="lamp_142_1" state="0">
- <bounds x="777" y="40" width="138" height="33">
- </bounds>
+ <bounds x="777" y="40" width="138" height="33"/>
</element>
<element name="lamp140" ref="lamp_140_1_border" state="0">
- <bounds x="775" y="4" width="142" height="37">
- </bounds>
+ <bounds x="775" y="4" width="142" height="37"/>
</element>
<element name="lamp140" ref="lamp_140_1" state="0">
- <bounds x="777" y="6" width="138" height="33">
- </bounds>
+ <bounds x="777" y="6" width="138" height="33"/>
</element>
<element name="lamp92" ref="lamp_92_1_border" state="0">
- <bounds x="775" y="72" width="142" height="37">
- </bounds>
+ <bounds x="775" y="72" width="142" height="37"/>
</element>
<element name="lamp92" ref="lamp_92_1" state="0">
- <bounds x="777" y="74" width="138" height="33">
- </bounds>
+ <bounds x="777" y="74" width="138" height="33"/>
</element>
<element name="lamp242" ref="lamp_242_1_border" state="0">
- <bounds x="775" y="548" width="102" height="37">
- </bounds>
+ <bounds x="775" y="548" width="102" height="37"/>
</element>
<element name="lamp242" ref="lamp_242_1" state="0">
- <bounds x="777" y="550" width="98" height="33">
- </bounds>
+ <bounds x="777" y="550" width="98" height="33"/>
</element>
<element name="lamp240" ref="lamp_240_1_border" state="0">
- <bounds x="775" y="514" width="102" height="37">
- </bounds>
+ <bounds x="775" y="514" width="102" height="37"/>
</element>
<element name="lamp240" ref="lamp_240_1" state="0">
- <bounds x="777" y="516" width="98" height="33">
- </bounds>
+ <bounds x="777" y="516" width="98" height="33"/>
</element>
<element name="lamp230" ref="lamp_230_1_border" state="0">
- <bounds x="775" y="480" width="102" height="37">
- </bounds>
+ <bounds x="775" y="480" width="102" height="37"/>
</element>
<element name="lamp230" ref="lamp_230_1" state="0">
- <bounds x="777" y="482" width="98" height="33">
- </bounds>
+ <bounds x="777" y="482" width="98" height="33"/>
</element>
<element name="lamp228" ref="lamp_228_1_border" state="0">
- <bounds x="775" y="446" width="102" height="37">
- </bounds>
+ <bounds x="775" y="446" width="102" height="37"/>
</element>
<element name="lamp228" ref="lamp_228_1" state="0">
- <bounds x="777" y="448" width="98" height="33">
- </bounds>
+ <bounds x="777" y="448" width="98" height="33"/>
</element>
<element name="lamp221" ref="lamp_221_1_border" state="0">
- <bounds x="775" y="412" width="102" height="37">
- </bounds>
+ <bounds x="775" y="412" width="102" height="37"/>
</element>
<element name="lamp221" ref="lamp_221_1" state="0">
- <bounds x="777" y="414" width="98" height="33">
- </bounds>
+ <bounds x="777" y="414" width="98" height="33"/>
</element>
<element name="lamp219" ref="lamp_219_1_border" state="0">
- <bounds x="775" y="378" width="102" height="37">
- </bounds>
+ <bounds x="775" y="378" width="102" height="37"/>
</element>
<element name="lamp219" ref="lamp_219_1" state="0">
- <bounds x="777" y="380" width="98" height="33">
- </bounds>
+ <bounds x="777" y="380" width="98" height="33"/>
</element>
<element name="lamp217" ref="lamp_217_1_border" state="0">
- <bounds x="775" y="344" width="102" height="37">
- </bounds>
+ <bounds x="775" y="344" width="102" height="37"/>
</element>
<element name="lamp217" ref="lamp_217_1" state="0">
- <bounds x="777" y="346" width="98" height="33">
- </bounds>
+ <bounds x="777" y="346" width="98" height="33"/>
</element>
<element name="lamp215" ref="lamp_215_1_border" state="0">
- <bounds x="775" y="310" width="102" height="37">
- </bounds>
+ <bounds x="775" y="310" width="102" height="37"/>
</element>
<element name="lamp215" ref="lamp_215_1" state="0">
- <bounds x="777" y="312" width="98" height="33">
- </bounds>
+ <bounds x="777" y="312" width="98" height="33"/>
</element>
<element name="lamp49" ref="lamp_49_1_border" state="0">
- <bounds x="775" y="276" width="102" height="37">
- </bounds>
+ <bounds x="775" y="276" width="102" height="37"/>
</element>
<element name="lamp49" ref="lamp_49_1" state="0">
- <bounds x="777" y="278" width="98" height="33">
- </bounds>
+ <bounds x="777" y="278" width="98" height="33"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="775" y="242" width="142" height="37">
- </bounds>
+ <bounds x="775" y="242" width="142" height="37"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="777" y="244" width="138" height="33">
- </bounds>
+ <bounds x="777" y="244" width="138" height="33"/>
</element>
<element name="lamp227" ref="lamp_227_1_border" state="0">
<bounds x="807" y="583" width="42" height="19"/>
diff --git a/src/mame/layout/j6impuls.lay b/src/mame/layout/j6impuls.lay
index b4919554e2c..f422f00d8ba 100644
--- a/src/mame/layout/j6impuls.lay
+++ b/src/mame/layout/j6impuls.lay
@@ -161,8 +161,7 @@
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.13"/>
diff --git a/src/mame/layout/j6impuls15.lay b/src/mame/layout/j6impuls15.lay
index 9edd417d6fe..0584a176c66 100644
--- a/src/mame/layout/j6impuls15.lay
+++ b/src/mame/layout/j6impuls15.lay
@@ -161,8 +161,7 @@
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.13"/>
diff --git a/src/mame/layout/j6kungfu.lay b/src/mame/layout/j6kungfu.lay
index bd299fd0344..873d27f600b 100644
--- a/src/mame/layout/j6kungfu.lay
+++ b/src/mame/layout/j6kungfu.lay
@@ -2782,12 +2782,11 @@
<bounds x="281" y="382" width="272" height="30"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="281" increment="17" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="281" increment="17"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="382" width="17" height="30">
- </bounds>
+ <bounds x="~x~" y="382" width="17" height="30"/>
</element>
</repeat>
<element name="label47" ref="label_47">
diff --git a/src/mame/layout/j6mono60.lay b/src/mame/layout/j6mono60.lay
index f0b5c82ff6a..e41ff81d48b 100644
--- a/src/mame/layout/j6mono60.lay
+++ b/src/mame/layout/j6mono60.lay
@@ -1701,106 +1701,82 @@
</element>
<element name="lamp_230_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_230_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_231_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_231_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_232_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_232_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_233_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_233_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_229_1_border" defstate="0">
@@ -5509,36 +5485,28 @@
<bounds x="154" y="304" width="14" height="28"/>
</element>
<element name="lamp230" ref="lamp_230_1_border" state="0">
- <bounds x="212" y="530" width="37" height="47">
- </bounds>
+ <bounds x="212" y="530" width="37" height="47"/>
</element>
<element name="lamp230" ref="lamp_230_1" state="0">
- <bounds x="214" y="532" width="33" height="43">
- </bounds>
+ <bounds x="214" y="532" width="33" height="43"/>
</element>
<element name="lamp231" ref="lamp_231_1_border" state="0">
- <bounds x="175" y="530" width="37" height="47">
- </bounds>
+ <bounds x="175" y="530" width="37" height="47"/>
</element>
<element name="lamp231" ref="lamp_231_1" state="0">
- <bounds x="177" y="532" width="33" height="43">
- </bounds>
+ <bounds x="177" y="532" width="33" height="43"/>
</element>
<element name="lamp232" ref="lamp_232_1_border" state="0">
- <bounds x="138" y="530" width="37" height="47">
- </bounds>
+ <bounds x="138" y="530" width="37" height="47"/>
</element>
<element name="lamp232" ref="lamp_232_1" state="0">
- <bounds x="140" y="532" width="33" height="43">
- </bounds>
+ <bounds x="140" y="532" width="33" height="43"/>
</element>
<element name="lamp233" ref="lamp_233_1_border" state="0">
- <bounds x="101" y="530" width="37" height="47">
- </bounds>
+ <bounds x="101" y="530" width="37" height="47"/>
</element>
<element name="lamp233" ref="lamp_233_1" state="0">
- <bounds x="103" y="532" width="33" height="43">
- </bounds>
+ <bounds x="103" y="532" width="33" height="43"/>
</element>
<element name="lamp229" ref="lamp_229_1_border" state="0">
<bounds x="151" y="498" width="52" height="32"/>
diff --git a/src/mame/layout/j6mono6010.lay b/src/mame/layout/j6mono6010.lay
index 2ece1d76e04..c42689bb435 100644
--- a/src/mame/layout/j6mono6010.lay
+++ b/src/mame/layout/j6mono6010.lay
@@ -1701,106 +1701,82 @@
</element>
<element name="lamp_230_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_230_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_231_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_231_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_232_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_232_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_233_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_233_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_229_1_border" defstate="0">
@@ -5509,36 +5485,28 @@
<bounds x="154" y="304" width="14" height="28"/>
</element>
<element name="lamp230" ref="lamp_230_1_border" state="0">
- <bounds x="212" y="530" width="37" height="47">
- </bounds>
+ <bounds x="212" y="530" width="37" height="47"/>
</element>
<element name="lamp230" ref="lamp_230_1" state="0">
- <bounds x="214" y="532" width="33" height="43">
- </bounds>
+ <bounds x="214" y="532" width="33" height="43"/>
</element>
<element name="lamp231" ref="lamp_231_1_border" state="0">
- <bounds x="175" y="530" width="37" height="47">
- </bounds>
+ <bounds x="175" y="530" width="37" height="47"/>
</element>
<element name="lamp231" ref="lamp_231_1" state="0">
- <bounds x="177" y="532" width="33" height="43">
- </bounds>
+ <bounds x="177" y="532" width="33" height="43"/>
</element>
<element name="lamp232" ref="lamp_232_1_border" state="0">
- <bounds x="138" y="530" width="37" height="47">
- </bounds>
+ <bounds x="138" y="530" width="37" height="47"/>
</element>
<element name="lamp232" ref="lamp_232_1" state="0">
- <bounds x="140" y="532" width="33" height="43">
- </bounds>
+ <bounds x="140" y="532" width="33" height="43"/>
</element>
<element name="lamp233" ref="lamp_233_1_border" state="0">
- <bounds x="101" y="530" width="37" height="47">
- </bounds>
+ <bounds x="101" y="530" width="37" height="47"/>
</element>
<element name="lamp233" ref="lamp_233_1" state="0">
- <bounds x="103" y="532" width="33" height="43">
- </bounds>
+ <bounds x="103" y="532" width="33" height="43"/>
</element>
<element name="lamp229" ref="lamp_229_1_border" state="0">
<bounds x="151" y="498" width="52" height="32"/>
diff --git a/src/mame/layout/j6mono608.lay b/src/mame/layout/j6mono608.lay
index 8c40399ea19..2dc8f771073 100644
--- a/src/mame/layout/j6mono608.lay
+++ b/src/mame/layout/j6mono608.lay
@@ -1701,106 +1701,82 @@
</element>
<element name="lamp_230_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_230_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_231_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_231_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_232_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_232_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_233_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_233_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_229_1_border" defstate="0">
@@ -5509,36 +5485,28 @@
<bounds x="154" y="304" width="14" height="28"/>
</element>
<element name="lamp230" ref="lamp_230_1_border" state="0">
- <bounds x="212" y="530" width="37" height="47">
- </bounds>
+ <bounds x="212" y="530" width="37" height="47"/>
</element>
<element name="lamp230" ref="lamp_230_1" state="0">
- <bounds x="214" y="532" width="33" height="43">
- </bounds>
+ <bounds x="214" y="532" width="33" height="43"/>
</element>
<element name="lamp231" ref="lamp_231_1_border" state="0">
- <bounds x="175" y="530" width="37" height="47">
- </bounds>
+ <bounds x="175" y="530" width="37" height="47"/>
</element>
<element name="lamp231" ref="lamp_231_1" state="0">
- <bounds x="177" y="532" width="33" height="43">
- </bounds>
+ <bounds x="177" y="532" width="33" height="43"/>
</element>
<element name="lamp232" ref="lamp_232_1_border" state="0">
- <bounds x="138" y="530" width="37" height="47">
- </bounds>
+ <bounds x="138" y="530" width="37" height="47"/>
</element>
<element name="lamp232" ref="lamp_232_1" state="0">
- <bounds x="140" y="532" width="33" height="43">
- </bounds>
+ <bounds x="140" y="532" width="33" height="43"/>
</element>
<element name="lamp233" ref="lamp_233_1_border" state="0">
- <bounds x="101" y="530" width="37" height="47">
- </bounds>
+ <bounds x="101" y="530" width="37" height="47"/>
</element>
<element name="lamp233" ref="lamp_233_1" state="0">
- <bounds x="103" y="532" width="33" height="43">
- </bounds>
+ <bounds x="103" y="532" width="33" height="43"/>
</element>
<element name="lamp229" ref="lamp_229_1_border" state="0">
<bounds x="151" y="498" width="52" height="32"/>
diff --git a/src/mame/layout/j6oxobin.lay b/src/mame/layout/j6oxobin.lay
index eb0407678e9..f2e73a6d38b 100644
--- a/src/mame/layout/j6oxobin.lay
+++ b/src/mame/layout/j6oxobin.lay
@@ -13,2896 +13,2226 @@
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_70_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_69_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_69_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_53_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_67_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_67_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_117_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_117_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_102_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_65_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_65_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_66_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_64_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_182_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_182_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_181_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_181_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_166_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_166_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_165_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_165_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_50_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_50_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_150_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_150_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_149_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_149_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_48_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_48_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_49_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_85_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_85_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_97_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_133_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_133_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_134_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_134_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_81_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_164_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_164_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_176_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_176_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_177_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_177_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_129_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_129_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_128_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_128_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_130_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.00" blue="0.50">
- </color>
+ <color red="0.25" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.00" blue="0.12">
- </color>
+ <color red="0.06" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_130_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="1.00">
- </color>
+ <color red="0.50" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.00" blue="0.25">
- </color>
+ <color red="0.13" green="0.00" blue="0.25"/>
</rect>
<text string="XO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_131_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.00" blue="0.50">
- </color>
+ <color red="0.25" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.00" blue="0.12">
- </color>
+ <color red="0.06" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_131_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="1.00">
- </color>
+ <color red="0.50" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.00" blue="0.25">
- </color>
+ <color red="0.13" green="0.00" blue="0.25"/>
</rect>
<text string="XO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_132_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.00" blue="0.50">
- </color>
+ <color red="0.25" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.00" blue="0.12">
- </color>
+ <color red="0.06" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_132_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="1.00">
- </color>
+ <color red="0.50" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.00" blue="0.25">
- </color>
+ <color red="0.13" green="0.00" blue="0.25"/>
</rect>
<text string="XO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_160_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_160_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_163_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_163_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_162_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_162_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_161_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_161_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_148_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_148_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_147_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_147_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_146_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_146_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_145_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_145_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_144_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_144_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="JPM's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="BINGO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_213_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_213_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_212_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_212_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_196_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_196_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_84_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_84">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="STREAK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="colour_button_85_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_85">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_86_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_86">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_87_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_87">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_88_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_88">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_89_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_89">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_90_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.50">
- </color>
+ <color red="0.50" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.12">
- </color>
+ <color red="0.12" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_90">
<rect state="1">
- <color red="1.00" green="0.50" blue="1.00">
- </color>
+ <color red="1.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.25">
- </color>
+ <color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_91_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_91">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="XO,.,Bar,X,.,X,NUDGE,.,Bar,O,.,O,.,O,Bar,.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="XO,.,Bar,.,X,O,.,O,NUDGE,.,X,Bar,.,X,NUDGE,.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="XO,.,Bar,X,.,X,NUDGE,.,Bar,O,.,O,.,O,Bar,.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_39">
<text string="NUDGES">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_40">
<text string="In View For Up To 3">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_41">
<text string="Get">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_42">
<text string="NUDGE">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_47">
<text string="&#xA3;">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_66">
<text string="60P">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_67">
<text string="&#xA3;1.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_68">
<text string="&#xA3;2.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_69">
<text string="&#xA3;4.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="&#xA3;8.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_71">
<text string="STREAK">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_80">
<text string="NUDGE">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_81">
<text string="Credits">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="501" height="576">
- </bounds>
+ <bounds x="0" y="0" width="501" height="576"/>
</element>
<element ref="reel_background">
- <bounds x="76" y="390" width="80" height="140">
- </bounds>
+ <bounds x="76" y="390" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="76.0000" y="390.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="76.0000" y="390.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="79.3333" y="391.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="79.3333" y="391.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="82.6667" y="393.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="82.6667" y="393.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="86.0000" y="395.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="86.0000" y="395.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="89.3333" y="397.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="89.3333" y="397.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="92.6667" y="399.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="92.6667" y="399.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="76.0000" y="436.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="76.0000" y="436.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="79.3333" y="438.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="79.3333" y="438.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="82.6667" y="440.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="82.6667" y="440.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="86.0000" y="442.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="86.0000" y="442.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="89.3333" y="444.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="89.3333" y="444.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="92.6667" y="446.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="92.6667" y="446.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="76.0000" y="483.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="76.0000" y="483.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="79.3333" y="485.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="79.3333" y="485.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="82.6667" y="487.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="82.6667" y="487.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="86.0000" y="489.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="86.0000" y="489.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="89.3333" y="491.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="89.3333" y="491.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="92.6667" y="493.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="92.6667" y="493.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="76" y="390" width="80" height="140">
- </bounds>
+ <bounds x="76" y="390" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="159" y="390" width="80" height="140">
- </bounds>
+ <bounds x="159" y="390" width="80" height="140"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="159.0000" y="390.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="159.0000" y="390.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="162.3333" y="391.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="162.3333" y="391.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="165.6667" y="393.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="165.6667" y="393.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="169.0000" y="395.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="169.0000" y="395.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="172.3333" y="397.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="172.3333" y="397.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="175.6667" y="399.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="175.6667" y="399.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="159.0000" y="436.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="159.0000" y="436.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="162.3333" y="438.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="162.3333" y="438.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="165.6667" y="440.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="165.6667" y="440.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="169.0000" y="442.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="169.0000" y="442.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="172.3333" y="444.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="172.3333" y="444.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="175.6667" y="446.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="175.6667" y="446.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="159.0000" y="483.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="159.0000" y="483.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="162.3333" y="485.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="162.3333" y="485.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="165.6667" y="487.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="165.6667" y="487.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="169.0000" y="489.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="169.0000" y="489.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="172.3333" y="491.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="172.3333" y="491.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="175.6667" y="493.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="175.6667" y="493.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="159" y="390" width="80" height="140">
- </bounds>
+ <bounds x="159" y="390" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="242" y="390" width="80" height="140">
- </bounds>
+ <bounds x="242" y="390" width="80" height="140"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="242.0000" y="390.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="242.0000" y="390.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="245.3333" y="391.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="245.3333" y="391.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="248.6667" y="393.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="248.6667" y="393.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.0000" y="395.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="252.0000" y="395.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="255.3333" y="397.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="255.3333" y="397.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="258.6667" y="399.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="258.6667" y="399.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="242.0000" y="436.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="242.0000" y="436.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="245.3333" y="438.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="245.3333" y="438.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="248.6667" y="440.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="248.6667" y="440.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.0000" y="442.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="252.0000" y="442.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="255.3333" y="444.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="255.3333" y="444.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="258.6667" y="446.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="258.6667" y="446.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="242.0000" y="483.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="242.0000" y="483.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="245.3333" y="485.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="245.3333" y="485.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="248.6667" y="487.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="248.6667" y="487.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.0000" y="489.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="252.0000" y="489.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="255.3333" y="491.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="255.3333" y="491.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="258.6667" y="493.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="258.6667" y="493.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="242" y="390" width="80" height="140">
- </bounds>
+ <bounds x="242" y="390" width="80" height="140"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="197" y="144" width="32" height="32">
- </bounds>
+ <bounds x="197" y="144" width="32" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="199" y="146" width="28" height="28">
- </bounds>
+ <bounds x="199" y="146" width="28" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="197" y="173" width="32" height="32">
- </bounds>
+ <bounds x="197" y="173" width="32" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="199" y="175" width="28" height="28">
- </bounds>
+ <bounds x="199" y="175" width="28" height="28"/>
</element>
<element name="lamp70" ref="lamp_70_1_border" state="0">
- <bounds x="168" y="144" width="32" height="32">
- </bounds>
+ <bounds x="168" y="144" width="32" height="32"/>
</element>
<element name="lamp70" ref="lamp_70_1" state="0">
- <bounds x="170" y="146" width="28" height="28">
- </bounds>
+ <bounds x="170" y="146" width="28" height="28"/>
</element>
<element name="lamp69" ref="lamp_69_1_border" state="0">
- <bounds x="168" y="173" width="32" height="32">
- </bounds>
+ <bounds x="168" y="173" width="32" height="32"/>
</element>
<element name="lamp69" ref="lamp_69_1" state="0">
- <bounds x="170" y="175" width="28" height="28">
- </bounds>
+ <bounds x="170" y="175" width="28" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="96" y="144" width="32" height="32">
- </bounds>
+ <bounds x="96" y="144" width="32" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="98" y="146" width="28" height="28">
- </bounds>
+ <bounds x="98" y="146" width="28" height="28"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="125" y="144" width="32" height="32">
- </bounds>
+ <bounds x="125" y="144" width="32" height="32"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="127" y="146" width="28" height="28">
- </bounds>
+ <bounds x="127" y="146" width="28" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="96" y="173" width="32" height="32">
- </bounds>
+ <bounds x="96" y="173" width="32" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="98" y="175" width="28" height="28">
- </bounds>
+ <bounds x="98" y="175" width="28" height="28"/>
</element>
<element name="lamp53" ref="lamp_53_1_border" state="0">
- <bounds x="125" y="173" width="32" height="32">
- </bounds>
+ <bounds x="125" y="173" width="32" height="32"/>
</element>
<element name="lamp53" ref="lamp_53_1" state="0">
- <bounds x="127" y="175" width="28" height="28">
- </bounds>
+ <bounds x="127" y="175" width="28" height="28"/>
</element>
<element name="lamp67" ref="lamp_67_1_border" state="0">
- <bounds x="168" y="243" width="32" height="32">
- </bounds>
+ <bounds x="168" y="243" width="32" height="32"/>
</element>
<element name="lamp67" ref="lamp_67_1" state="0">
- <bounds x="170" y="245" width="28" height="28">
- </bounds>
+ <bounds x="170" y="245" width="28" height="28"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="168" y="214" width="32" height="32">
- </bounds>
+ <bounds x="168" y="214" width="32" height="32"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="170" y="216" width="28" height="28">
- </bounds>
+ <bounds x="170" y="216" width="28" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="197" y="214" width="32" height="32">
- </bounds>
+ <bounds x="197" y="214" width="32" height="32"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="199" y="216" width="28" height="28">
- </bounds>
+ <bounds x="199" y="216" width="28" height="28"/>
</element>
<element name="lamp117" ref="lamp_117_1_border" state="0">
- <bounds x="197" y="243" width="32" height="32">
- </bounds>
+ <bounds x="197" y="243" width="32" height="32"/>
</element>
<element name="lamp117" ref="lamp_117_1" state="0">
- <bounds x="199" y="245" width="28" height="28">
- </bounds>
+ <bounds x="199" y="245" width="28" height="28"/>
</element>
<element name="lamp102" ref="lamp_102_1_border" state="0">
- <bounds x="125" y="214" width="32" height="32">
- </bounds>
+ <bounds x="125" y="214" width="32" height="32"/>
</element>
<element name="lamp102" ref="lamp_102_1" state="0">
- <bounds x="127" y="216" width="28" height="28">
- </bounds>
+ <bounds x="127" y="216" width="28" height="28"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="125" y="243" width="32" height="32">
- </bounds>
+ <bounds x="125" y="243" width="32" height="32"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="127" y="245" width="28" height="28">
- </bounds>
+ <bounds x="127" y="245" width="28" height="28"/>
</element>
<element name="lamp65" ref="lamp_65_1_border" state="0">
- <bounds x="96" y="243" width="32" height="32">
- </bounds>
+ <bounds x="96" y="243" width="32" height="32"/>
</element>
<element name="lamp65" ref="lamp_65_1" state="0">
- <bounds x="98" y="245" width="28" height="28">
- </bounds>
+ <bounds x="98" y="245" width="28" height="28"/>
</element>
<element name="lamp66" ref="lamp_66_1_border" state="0">
- <bounds x="96" y="214" width="32" height="32">
- </bounds>
+ <bounds x="96" y="214" width="32" height="32"/>
</element>
<element name="lamp66" ref="lamp_66_1" state="0">
- <bounds x="98" y="216" width="28" height="28">
- </bounds>
+ <bounds x="98" y="216" width="28" height="28"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="268" y="285" width="32" height="32">
- </bounds>
+ <bounds x="268" y="285" width="32" height="32"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="270" y="287" width="28" height="28">
- </bounds>
+ <bounds x="270" y="287" width="28" height="28"/>
</element>
<element name="lamp182" ref="lamp_182_1_border" state="0">
- <bounds x="239" y="285" width="32" height="32">
- </bounds>
+ <bounds x="239" y="285" width="32" height="32"/>
</element>
<element name="lamp182" ref="lamp_182_1" state="0">
- <bounds x="241" y="287" width="28" height="28">
- </bounds>
+ <bounds x="241" y="287" width="28" height="28"/>
</element>
<element name="lamp181" ref="lamp_181_1_border" state="0">
- <bounds x="239" y="314" width="32" height="32">
- </bounds>
+ <bounds x="239" y="314" width="32" height="32"/>
</element>
<element name="lamp181" ref="lamp_181_1" state="0">
- <bounds x="241" y="316" width="28" height="28">
- </bounds>
+ <bounds x="241" y="316" width="28" height="28"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="268" y="314" width="32" height="32">
- </bounds>
+ <bounds x="268" y="314" width="32" height="32"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="270" y="316" width="28" height="28">
- </bounds>
+ <bounds x="270" y="316" width="28" height="28"/>
</element>
<element name="lamp166" ref="lamp_166_1_border" state="0">
- <bounds x="197" y="285" width="32" height="32">
- </bounds>
+ <bounds x="197" y="285" width="32" height="32"/>
</element>
<element name="lamp166" ref="lamp_166_1" state="0">
- <bounds x="199" y="287" width="28" height="28">
- </bounds>
+ <bounds x="199" y="287" width="28" height="28"/>
</element>
<element name="lamp165" ref="lamp_165_1_border" state="0">
- <bounds x="197" y="314" width="32" height="32">
- </bounds>
+ <bounds x="197" y="314" width="32" height="32"/>
</element>
<element name="lamp165" ref="lamp_165_1" state="0">
- <bounds x="199" y="316" width="28" height="28">
- </bounds>
+ <bounds x="199" y="316" width="28" height="28"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="168" y="285" width="32" height="32">
- </bounds>
+ <bounds x="168" y="285" width="32" height="32"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="170" y="287" width="28" height="28">
- </bounds>
+ <bounds x="170" y="287" width="28" height="28"/>
</element>
<element name="lamp50" ref="lamp_50_1_border" state="0">
- <bounds x="168" y="314" width="32" height="32">
- </bounds>
+ <bounds x="168" y="314" width="32" height="32"/>
</element>
<element name="lamp50" ref="lamp_50_1" state="0">
- <bounds x="170" y="316" width="28" height="28">
- </bounds>
+ <bounds x="170" y="316" width="28" height="28"/>
</element>
<element name="lamp150" ref="lamp_150_1_border" state="0">
- <bounds x="96" y="285" width="32" height="32">
- </bounds>
+ <bounds x="96" y="285" width="32" height="32"/>
</element>
<element name="lamp150" ref="lamp_150_1" state="0">
- <bounds x="98" y="287" width="28" height="28">
- </bounds>
+ <bounds x="98" y="287" width="28" height="28"/>
</element>
<element name="lamp149" ref="lamp_149_1_border" state="0">
- <bounds x="96" y="314" width="32" height="32">
- </bounds>
+ <bounds x="96" y="314" width="32" height="32"/>
</element>
<element name="lamp149" ref="lamp_149_1" state="0">
- <bounds x="98" y="316" width="28" height="28">
- </bounds>
+ <bounds x="98" y="316" width="28" height="28"/>
</element>
<element name="lamp48" ref="lamp_48_1_border" state="0">
- <bounds x="125" y="314" width="32" height="32">
- </bounds>
+ <bounds x="125" y="314" width="32" height="32"/>
</element>
<element name="lamp48" ref="lamp_48_1" state="0">
- <bounds x="127" y="316" width="28" height="28">
- </bounds>
+ <bounds x="127" y="316" width="28" height="28"/>
</element>
<element name="lamp49" ref="lamp_49_1_border" state="0">
- <bounds x="125" y="285" width="32" height="32">
- </bounds>
+ <bounds x="125" y="285" width="32" height="32"/>
</element>
<element name="lamp49" ref="lamp_49_1" state="0">
- <bounds x="127" y="287" width="28" height="28">
- </bounds>
+ <bounds x="127" y="287" width="28" height="28"/>
</element>
<element name="lamp85" ref="lamp_85_1_border" state="0">
- <bounds x="239" y="173" width="32" height="32">
- </bounds>
+ <bounds x="239" y="173" width="32" height="32"/>
</element>
<element name="lamp85" ref="lamp_85_1" state="0">
- <bounds x="241" y="175" width="28" height="28">
- </bounds>
+ <bounds x="241" y="175" width="28" height="28"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="239" y="144" width="32" height="32">
- </bounds>
+ <bounds x="239" y="144" width="32" height="32"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="241" y="146" width="28" height="28">
- </bounds>
+ <bounds x="241" y="146" width="28" height="28"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="268" y="173" width="32" height="32">
- </bounds>
+ <bounds x="268" y="173" width="32" height="32"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="270" y="175" width="28" height="28">
- </bounds>
+ <bounds x="270" y="175" width="28" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="268" y="144" width="32" height="32">
- </bounds>
+ <bounds x="268" y="144" width="32" height="32"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="270" y="146" width="28" height="28">
- </bounds>
+ <bounds x="270" y="146" width="28" height="28"/>
</element>
<element name="lamp133" ref="lamp_133_1_border" state="0">
- <bounds x="268" y="243" width="32" height="32">
- </bounds>
+ <bounds x="268" y="243" width="32" height="32"/>
</element>
<element name="lamp133" ref="lamp_133_1" state="0">
- <bounds x="270" y="245" width="28" height="28">
- </bounds>
+ <bounds x="270" y="245" width="28" height="28"/>
</element>
<element name="lamp134" ref="lamp_134_1_border" state="0">
- <bounds x="268" y="214" width="32" height="32">
- </bounds>
+ <bounds x="268" y="214" width="32" height="32"/>
</element>
<element name="lamp134" ref="lamp_134_1" state="0">
- <bounds x="270" y="216" width="28" height="28">
- </bounds>
+ <bounds x="270" y="216" width="28" height="28"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="239" y="243" width="32" height="32">
- </bounds>
+ <bounds x="239" y="243" width="32" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="241" y="245" width="28" height="28">
- </bounds>
+ <bounds x="241" y="245" width="28" height="28"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="239" y="214" width="32" height="32">
- </bounds>
+ <bounds x="239" y="214" width="32" height="32"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="241" y="216" width="28" height="28">
- </bounds>
+ <bounds x="241" y="216" width="28" height="28"/>
</element>
<element name="lamp164" ref="lamp_164_1_border" state="0">
- <bounds x="313" y="247" width="32" height="32">
- </bounds>
+ <bounds x="313" y="247" width="32" height="32"/>
</element>
<element name="lamp164" ref="lamp_164_1" state="0">
- <bounds x="315" y="249" width="28" height="28">
- </bounds>
+ <bounds x="315" y="249" width="28" height="28"/>
</element>
<element name="lamp176" ref="lamp_176_1_border" state="0">
- <bounds x="342" y="247" width="32" height="32">
- </bounds>
+ <bounds x="342" y="247" width="32" height="32"/>
</element>
<element name="lamp176" ref="lamp_176_1" state="0">
- <bounds x="344" y="249" width="28" height="28">
- </bounds>
+ <bounds x="344" y="249" width="28" height="28"/>
</element>
<element name="lamp177" ref="lamp_177_1_border" state="0">
- <bounds x="371" y="247" width="32" height="32">
- </bounds>
+ <bounds x="371" y="247" width="32" height="32"/>
</element>
<element name="lamp177" ref="lamp_177_1" state="0">
- <bounds x="373" y="249" width="28" height="28">
- </bounds>
+ <bounds x="373" y="249" width="28" height="28"/>
</element>
<element name="lamp129" ref="lamp_129_1_border" state="0">
- <bounds x="371" y="72" width="32" height="32">
- </bounds>
+ <bounds x="371" y="72" width="32" height="32"/>
</element>
<element name="lamp129" ref="lamp_129_1" state="0">
- <bounds x="373" y="74" width="28" height="28">
- </bounds>
+ <bounds x="373" y="74" width="28" height="28"/>
</element>
<element name="lamp128" ref="lamp_128_1_border" state="0">
- <bounds x="342" y="72" width="32" height="32">
- </bounds>
+ <bounds x="342" y="72" width="32" height="32"/>
</element>
<element name="lamp128" ref="lamp_128_1" state="0">
- <bounds x="344" y="74" width="28" height="28">
- </bounds>
+ <bounds x="344" y="74" width="28" height="28"/>
</element>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="313" y="72" width="32" height="32">
- </bounds>
+ <bounds x="313" y="72" width="32" height="32"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="315" y="74" width="28" height="28">
- </bounds>
+ <bounds x="315" y="74" width="28" height="28"/>
</element>
<element name="lamp130" ref="lamp_130_1_border" state="0">
- <bounds x="313" y="107" width="32" height="32">
- </bounds>
+ <bounds x="313" y="107" width="32" height="32"/>
</element>
<element name="lamp130" ref="lamp_130_1" state="0">
- <bounds x="315" y="109" width="28" height="28">
- </bounds>
+ <bounds x="315" y="109" width="28" height="28"/>
</element>
<element name="lamp131" ref="lamp_131_1_border" state="0">
- <bounds x="342" y="107" width="32" height="32">
- </bounds>
+ <bounds x="342" y="107" width="32" height="32"/>
</element>
<element name="lamp131" ref="lamp_131_1" state="0">
- <bounds x="344" y="109" width="28" height="28">
- </bounds>
+ <bounds x="344" y="109" width="28" height="28"/>
</element>
<element name="lamp132" ref="lamp_132_1_border" state="0">
- <bounds x="371" y="107" width="32" height="32">
- </bounds>
+ <bounds x="371" y="107" width="32" height="32"/>
</element>
<element name="lamp132" ref="lamp_132_1" state="0">
- <bounds x="373" y="109" width="28" height="28">
- </bounds>
+ <bounds x="373" y="109" width="28" height="28"/>
</element>
<element name="lamp160" ref="lamp_160_1_border" state="0">
- <bounds x="371" y="177" width="32" height="32">
- </bounds>
+ <bounds x="371" y="177" width="32" height="32"/>
</element>
<element name="lamp160" ref="lamp_160_1" state="0">
- <bounds x="373" y="179" width="28" height="28">
- </bounds>
+ <bounds x="373" y="179" width="28" height="28"/>
</element>
<element name="lamp163" ref="lamp_163_1_border" state="0">
- <bounds x="371" y="212" width="32" height="32">
- </bounds>
+ <bounds x="371" y="212" width="32" height="32"/>
</element>
<element name="lamp163" ref="lamp_163_1" state="0">
- <bounds x="373" y="214" width="28" height="28">
- </bounds>
+ <bounds x="373" y="214" width="28" height="28"/>
</element>
<element name="lamp162" ref="lamp_162_1_border" state="0">
- <bounds x="342" y="212" width="32" height="32">
- </bounds>
+ <bounds x="342" y="212" width="32" height="32"/>
</element>
<element name="lamp162" ref="lamp_162_1" state="0">
- <bounds x="344" y="214" width="28" height="28">
- </bounds>
+ <bounds x="344" y="214" width="28" height="28"/>
</element>
<element name="lamp161" ref="lamp_161_1_border" state="0">
- <bounds x="313" y="212" width="32" height="32">
- </bounds>
+ <bounds x="313" y="212" width="32" height="32"/>
</element>
<element name="lamp161" ref="lamp_161_1" state="0">
- <bounds x="315" y="214" width="28" height="28">
- </bounds>
+ <bounds x="315" y="214" width="28" height="28"/>
</element>
<element name="lamp148" ref="lamp_148_1_border" state="0">
- <bounds x="342" y="177" width="32" height="32">
- </bounds>
+ <bounds x="342" y="177" width="32" height="32"/>
</element>
<element name="lamp148" ref="lamp_148_1" state="0">
- <bounds x="344" y="179" width="28" height="28">
- </bounds>
+ <bounds x="344" y="179" width="28" height="28"/>
</element>
<element name="lamp147" ref="lamp_147_1_border" state="0">
- <bounds x="313" y="177" width="32" height="32">
- </bounds>
+ <bounds x="313" y="177" width="32" height="32"/>
</element>
<element name="lamp147" ref="lamp_147_1" state="0">
- <bounds x="315" y="179" width="28" height="28">
- </bounds>
+ <bounds x="315" y="179" width="28" height="28"/>
</element>
<element name="lamp146" ref="lamp_146_1_border" state="0">
- <bounds x="371" y="142" width="32" height="32">
- </bounds>
+ <bounds x="371" y="142" width="32" height="32"/>
</element>
<element name="lamp146" ref="lamp_146_1" state="0">
- <bounds x="373" y="144" width="28" height="28">
- </bounds>
+ <bounds x="373" y="144" width="28" height="28"/>
</element>
<element name="lamp145" ref="lamp_145_1_border" state="0">
- <bounds x="342" y="142" width="32" height="32">
- </bounds>
+ <bounds x="342" y="142" width="32" height="32"/>
</element>
<element name="lamp145" ref="lamp_145_1" state="0">
- <bounds x="344" y="144" width="28" height="28">
- </bounds>
+ <bounds x="344" y="144" width="28" height="28"/>
</element>
<element name="lamp144" ref="lamp_144_1_border" state="0">
- <bounds x="313" y="142" width="32" height="32">
- </bounds>
+ <bounds x="313" y="142" width="32" height="32"/>
</element>
<element name="lamp144" ref="lamp_144_1" state="0">
- <bounds x="315" y="144" width="28" height="28">
- </bounds>
+ <bounds x="315" y="144" width="28" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="235" y="14" width="32" height="32">
- </bounds>
+ <bounds x="235" y="14" width="32" height="32"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="237" y="16" width="28" height="28">
- </bounds>
+ <bounds x="237" y="16" width="28" height="28"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="47" y="14" width="102" height="32">
- </bounds>
+ <bounds x="47" y="14" width="102" height="32"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="49" y="16" width="98" height="28">
- </bounds>
+ <bounds x="49" y="16" width="98" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="272" y="14" width="102" height="32">
- </bounds>
+ <bounds x="272" y="14" width="102" height="32"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="274" y="16" width="98" height="28">
- </bounds>
+ <bounds x="274" y="16" width="98" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="196" y="14" width="32" height="32">
- </bounds>
+ <bounds x="196" y="14" width="32" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="198" y="16" width="28" height="28">
- </bounds>
+ <bounds x="198" y="16" width="28" height="28"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="154" y="14" width="32" height="32">
- </bounds>
+ <bounds x="154" y="14" width="32" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="156" y="16" width="28" height="28">
- </bounds>
+ <bounds x="156" y="16" width="28" height="28"/>
</element>
<element name="lamp213" ref="lamp_213_1_border" state="0">
- <bounds x="16" y="432" width="42" height="42">
- </bounds>
+ <bounds x="16" y="432" width="42" height="42"/>
</element>
<element name="lamp213" ref="lamp_213_1" state="0">
- <bounds x="18" y="434" width="38" height="38">
- </bounds>
+ <bounds x="18" y="434" width="38" height="38"/>
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="16" y="393" width="42" height="42">
- </bounds>
+ <bounds x="16" y="393" width="42" height="42"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="18" y="395" width="38" height="38">
- </bounds>
+ <bounds x="18" y="395" width="38" height="38"/>
</element>
<element name="lamp196" ref="lamp_196_1_border" state="0">
- <bounds x="16" y="471" width="42" height="42">
- </bounds>
+ <bounds x="16" y="471" width="42" height="42"/>
</element>
<element name="lamp196" ref="lamp_196_1" state="0">
- <bounds x="18" y="473" width="38" height="38">
- </bounds>
+ <bounds x="18" y="473" width="38" height="38"/>
</element>
<element name="lamp178" ref="colour_button_84_border" state="0" inputtag="J10_2" inputmask="0x02">
- <bounds x="303" y="289" width="62" height="62">
- </bounds>
+ <bounds x="303" y="289" width="62" height="62"/>
</element>
<element name="lamp178" ref="colour_button_84" state="0" inputtag="J10_2" inputmask="0x02">
- <bounds x="305" y="291" width="58" height="58">
- </bounds>
+ <bounds x="305" y="291" width="58" height="58"/>
</element>
<element name="lamp14" ref="colour_button_85_border" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="444" y="8" width="37" height="52">
- </bounds>
+ <bounds x="444" y="8" width="37" height="52"/>
</element>
<element name="lamp14" ref="colour_button_85" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="446" y="10" width="33" height="48">
- </bounds>
+ <bounds x="446" y="10" width="33" height="48"/>
</element>
<element name="lamp224" ref="colour_button_86_border" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="3" y="538" width="75" height="27">
- </bounds>
+ <bounds x="3" y="538" width="75" height="27"/>
</element>
<element name="lamp224" ref="colour_button_86" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="5" y="540" width="71" height="23">
- </bounds>
+ <bounds x="5" y="540" width="71" height="23"/>
</element>
<element name="lamp210" ref="colour_button_87_border" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="80" y="538" width="75" height="27">
- </bounds>
+ <bounds x="80" y="538" width="75" height="27"/>
</element>
<element name="lamp210" ref="colour_button_87" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="82" y="540" width="71" height="23">
- </bounds>
+ <bounds x="82" y="540" width="71" height="23"/>
</element>
<element name="lamp208" ref="colour_button_88_border" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="163" y="538" width="75" height="27">
- </bounds>
+ <bounds x="163" y="538" width="75" height="27"/>
</element>
<element name="lamp208" ref="colour_button_88" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="165" y="540" width="71" height="23">
- </bounds>
+ <bounds x="165" y="540" width="71" height="23"/>
</element>
<element name="lamp194" ref="colour_button_89_border" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="246" y="538" width="75" height="27">
- </bounds>
+ <bounds x="246" y="538" width="75" height="27"/>
</element>
<element name="lamp194" ref="colour_button_89" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="248" y="540" width="71" height="23">
- </bounds>
+ <bounds x="248" y="540" width="71" height="23"/>
</element>
<element name="lamp193" ref="colour_button_90_border" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="337" y="538" width="75" height="27">
- </bounds>
+ <bounds x="337" y="538" width="75" height="27"/>
</element>
<element name="lamp193" ref="colour_button_90" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="339" y="540" width="71" height="23">
- </bounds>
+ <bounds x="339" y="540" width="71" height="23"/>
</element>
<element name="lamp192" ref="colour_button_91_border" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="423" y="538" width="75" height="27">
- </bounds>
+ <bounds x="423" y="538" width="75" height="27"/>
</element>
<element name="lamp192" ref="colour_button_91" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="425" y="540" width="71" height="23">
- </bounds>
+ <bounds x="425" y="540" width="71" height="23"/>
</element>
<element name="digit2" ref="led_digit" state="0">
- <bounds x="129" y="73" width="35" height="50">
- </bounds>
+ <bounds x="129" y="73" width="35" height="50"/>
</element>
<element name="digit3" ref="led_digit" state="0">
- <bounds x="164" y="73" width="35" height="50">
- </bounds>
+ <bounds x="164" y="73" width="35" height="50"/>
</element>
<element name="digit4" ref="led_digit" state="0">
- <bounds x="199" y="73" width="35" height="50">
- </bounds>
+ <bounds x="199" y="73" width="35" height="50"/>
</element>
<element name="digit5" ref="led_digit" state="0">
- <bounds x="234" y="73" width="35" height="50">
- </bounds>
+ <bounds x="234" y="73" width="35" height="50"/>
</element>
<element name="digit0" ref="led_digit" state="0">
- <bounds x="404" y="304" width="24" height="32">
- </bounds>
+ <bounds x="404" y="304" width="24" height="32"/>
</element>
<element name="digit1" ref="led_digit" state="0">
- <bounds x="428" y="304" width="24" height="32">
- </bounds>
+ <bounds x="428" y="304" width="24" height="32"/>
</element>
<element name="label39" ref="label_39">
- <bounds x="257" y="364" width="77" height="20">
- </bounds>
+ <bounds x="257" y="364" width="77" height="20"/>
</element>
<element name="label40" ref="label_40">
- <bounds x="158" y="368" width="95" height="13">
- </bounds>
+ <bounds x="158" y="368" width="95" height="13"/>
</element>
<element name="label41" ref="label_41">
- <bounds x="68" y="368" width="17" height="13">
- </bounds>
+ <bounds x="68" y="368" width="17" height="13"/>
</element>
<element name="label42" ref="label_42">
- <bounds x="90" y="364" width="65" height="20">
- </bounds>
+ <bounds x="90" y="364" width="65" height="20"/>
</element>
<element name="label47" ref="label_47">
- <bounds x="88" y="60" width="37" height="78">
- </bounds>
+ <bounds x="88" y="60" width="37" height="78"/>
</element>
<element name="label66" ref="label_66">
- <bounds x="409" y="251" width="36" height="24">
- </bounds>
+ <bounds x="409" y="251" width="36" height="24"/>
</element>
<element name="label67" ref="label_67">
- <bounds x="409" y="217" width="51" height="24">
- </bounds>
+ <bounds x="409" y="217" width="51" height="24"/>
</element>
<element name="label68" ref="label_68">
- <bounds x="409" y="182" width="51" height="24">
- </bounds>
+ <bounds x="409" y="182" width="51" height="24"/>
</element>
<element name="label69" ref="label_69">
- <bounds x="409" y="147" width="51" height="24">
- </bounds>
+ <bounds x="409" y="147" width="51" height="24"/>
</element>
<element name="label70" ref="label_70">
- <bounds x="409" y="113" width="51" height="24">
- </bounds>
+ <bounds x="409" y="113" width="51" height="24"/>
</element>
<element name="label71" ref="label_71">
- <bounds x="406" y="76" width="82" height="24">
- </bounds>
+ <bounds x="406" y="76" width="82" height="24"/>
</element>
<element name="label80" ref="label_80">
- <bounds x="2" y="511" width="73" height="24">
- </bounds>
+ <bounds x="2" y="511" width="73" height="24"/>
</element>
<element name="label81" ref="label_81">
- <bounds x="409" y="341" width="32" height="13">
- </bounds>
+ <bounds x="409" y="341" width="32" height="13"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/j6oxobin10.lay b/src/mame/layout/j6oxobin10.lay
index eb0407678e9..f2e73a6d38b 100644
--- a/src/mame/layout/j6oxobin10.lay
+++ b/src/mame/layout/j6oxobin10.lay
@@ -13,2896 +13,2226 @@
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_70_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_69_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_69_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_53_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_67_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_67_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_117_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_117_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_102_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_65_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_65_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_66_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_64_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_182_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_182_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_181_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_181_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_166_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_166_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_165_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_165_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_50_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_50_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_150_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_150_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_149_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_149_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_48_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_48_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_49_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_85_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_85_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_97_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_133_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_133_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_134_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_134_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_81_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_164_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_164_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_176_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_176_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_177_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_177_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_129_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_129_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_128_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_128_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_130_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.00" blue="0.50">
- </color>
+ <color red="0.25" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.00" blue="0.12">
- </color>
+ <color red="0.06" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_130_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="1.00">
- </color>
+ <color red="0.50" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.00" blue="0.25">
- </color>
+ <color red="0.13" green="0.00" blue="0.25"/>
</rect>
<text string="XO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_131_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.00" blue="0.50">
- </color>
+ <color red="0.25" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.00" blue="0.12">
- </color>
+ <color red="0.06" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_131_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="1.00">
- </color>
+ <color red="0.50" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.00" blue="0.25">
- </color>
+ <color red="0.13" green="0.00" blue="0.25"/>
</rect>
<text string="XO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_132_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.00" blue="0.50">
- </color>
+ <color red="0.25" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.00" blue="0.12">
- </color>
+ <color red="0.06" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_132_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="1.00">
- </color>
+ <color red="0.50" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.00" blue="0.25">
- </color>
+ <color red="0.13" green="0.00" blue="0.25"/>
</rect>
<text string="XO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_160_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_160_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_163_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_163_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_162_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_162_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_161_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_161_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_148_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_148_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_147_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_147_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_146_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_146_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_145_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_145_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_144_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_144_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="JPM's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="BINGO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_213_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_213_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_212_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_212_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_196_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_196_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_84_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_84">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="STREAK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="colour_button_85_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_85">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_86_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_86">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_87_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_87">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_88_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_88">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_89_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_89">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_90_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.50">
- </color>
+ <color red="0.50" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.12">
- </color>
+ <color red="0.12" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_90">
<rect state="1">
- <color red="1.00" green="0.50" blue="1.00">
- </color>
+ <color red="1.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.25">
- </color>
+ <color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_91_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_91">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="XO,.,Bar,X,.,X,NUDGE,.,Bar,O,.,O,.,O,Bar,.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="XO,.,Bar,.,X,O,.,O,NUDGE,.,X,Bar,.,X,NUDGE,.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="XO,.,Bar,X,.,X,NUDGE,.,Bar,O,.,O,.,O,Bar,.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_39">
<text string="NUDGES">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_40">
<text string="In View For Up To 3">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_41">
<text string="Get">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_42">
<text string="NUDGE">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_47">
<text string="&#xA3;">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_66">
<text string="60P">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_67">
<text string="&#xA3;1.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_68">
<text string="&#xA3;2.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_69">
<text string="&#xA3;4.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="&#xA3;8.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_71">
<text string="STREAK">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_80">
<text string="NUDGE">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_81">
<text string="Credits">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="501" height="576">
- </bounds>
+ <bounds x="0" y="0" width="501" height="576"/>
</element>
<element ref="reel_background">
- <bounds x="76" y="390" width="80" height="140">
- </bounds>
+ <bounds x="76" y="390" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="76.0000" y="390.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="76.0000" y="390.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="79.3333" y="391.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="79.3333" y="391.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="82.6667" y="393.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="82.6667" y="393.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="86.0000" y="395.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="86.0000" y="395.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="89.3333" y="397.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="89.3333" y="397.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="92.6667" y="399.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="92.6667" y="399.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="76.0000" y="436.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="76.0000" y="436.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="79.3333" y="438.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="79.3333" y="438.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="82.6667" y="440.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="82.6667" y="440.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="86.0000" y="442.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="86.0000" y="442.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="89.3333" y="444.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="89.3333" y="444.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="92.6667" y="446.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="92.6667" y="446.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="76.0000" y="483.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="76.0000" y="483.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="79.3333" y="485.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="79.3333" y="485.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="82.6667" y="487.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="82.6667" y="487.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="86.0000" y="489.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="86.0000" y="489.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="89.3333" y="491.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="89.3333" y="491.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="92.6667" y="493.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="92.6667" y="493.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="76" y="390" width="80" height="140">
- </bounds>
+ <bounds x="76" y="390" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="159" y="390" width="80" height="140">
- </bounds>
+ <bounds x="159" y="390" width="80" height="140"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="159.0000" y="390.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="159.0000" y="390.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="162.3333" y="391.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="162.3333" y="391.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="165.6667" y="393.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="165.6667" y="393.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="169.0000" y="395.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="169.0000" y="395.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="172.3333" y="397.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="172.3333" y="397.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="175.6667" y="399.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="175.6667" y="399.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="159.0000" y="436.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="159.0000" y="436.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="162.3333" y="438.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="162.3333" y="438.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="165.6667" y="440.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="165.6667" y="440.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="169.0000" y="442.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="169.0000" y="442.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="172.3333" y="444.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="172.3333" y="444.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="175.6667" y="446.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="175.6667" y="446.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="159.0000" y="483.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="159.0000" y="483.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="162.3333" y="485.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="162.3333" y="485.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="165.6667" y="487.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="165.6667" y="487.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="169.0000" y="489.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="169.0000" y="489.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="172.3333" y="491.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="172.3333" y="491.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="175.6667" y="493.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="175.6667" y="493.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="159" y="390" width="80" height="140">
- </bounds>
+ <bounds x="159" y="390" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="242" y="390" width="80" height="140">
- </bounds>
+ <bounds x="242" y="390" width="80" height="140"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="242.0000" y="390.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="242.0000" y="390.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="245.3333" y="391.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="245.3333" y="391.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="248.6667" y="393.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="248.6667" y="393.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.0000" y="395.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="252.0000" y="395.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="255.3333" y="397.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="255.3333" y="397.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="258.6667" y="399.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="258.6667" y="399.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="242.0000" y="436.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="242.0000" y="436.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="245.3333" y="438.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="245.3333" y="438.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="248.6667" y="440.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="248.6667" y="440.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.0000" y="442.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="252.0000" y="442.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="255.3333" y="444.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="255.3333" y="444.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="258.6667" y="446.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="258.6667" y="446.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="242.0000" y="483.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="242.0000" y="483.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="245.3333" y="485.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="245.3333" y="485.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="248.6667" y="487.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="248.6667" y="487.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.0000" y="489.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="252.0000" y="489.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="255.3333" y="491.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="255.3333" y="491.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="258.6667" y="493.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="258.6667" y="493.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="242" y="390" width="80" height="140">
- </bounds>
+ <bounds x="242" y="390" width="80" height="140"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="197" y="144" width="32" height="32">
- </bounds>
+ <bounds x="197" y="144" width="32" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="199" y="146" width="28" height="28">
- </bounds>
+ <bounds x="199" y="146" width="28" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="197" y="173" width="32" height="32">
- </bounds>
+ <bounds x="197" y="173" width="32" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="199" y="175" width="28" height="28">
- </bounds>
+ <bounds x="199" y="175" width="28" height="28"/>
</element>
<element name="lamp70" ref="lamp_70_1_border" state="0">
- <bounds x="168" y="144" width="32" height="32">
- </bounds>
+ <bounds x="168" y="144" width="32" height="32"/>
</element>
<element name="lamp70" ref="lamp_70_1" state="0">
- <bounds x="170" y="146" width="28" height="28">
- </bounds>
+ <bounds x="170" y="146" width="28" height="28"/>
</element>
<element name="lamp69" ref="lamp_69_1_border" state="0">
- <bounds x="168" y="173" width="32" height="32">
- </bounds>
+ <bounds x="168" y="173" width="32" height="32"/>
</element>
<element name="lamp69" ref="lamp_69_1" state="0">
- <bounds x="170" y="175" width="28" height="28">
- </bounds>
+ <bounds x="170" y="175" width="28" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="96" y="144" width="32" height="32">
- </bounds>
+ <bounds x="96" y="144" width="32" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="98" y="146" width="28" height="28">
- </bounds>
+ <bounds x="98" y="146" width="28" height="28"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="125" y="144" width="32" height="32">
- </bounds>
+ <bounds x="125" y="144" width="32" height="32"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="127" y="146" width="28" height="28">
- </bounds>
+ <bounds x="127" y="146" width="28" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="96" y="173" width="32" height="32">
- </bounds>
+ <bounds x="96" y="173" width="32" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="98" y="175" width="28" height="28">
- </bounds>
+ <bounds x="98" y="175" width="28" height="28"/>
</element>
<element name="lamp53" ref="lamp_53_1_border" state="0">
- <bounds x="125" y="173" width="32" height="32">
- </bounds>
+ <bounds x="125" y="173" width="32" height="32"/>
</element>
<element name="lamp53" ref="lamp_53_1" state="0">
- <bounds x="127" y="175" width="28" height="28">
- </bounds>
+ <bounds x="127" y="175" width="28" height="28"/>
</element>
<element name="lamp67" ref="lamp_67_1_border" state="0">
- <bounds x="168" y="243" width="32" height="32">
- </bounds>
+ <bounds x="168" y="243" width="32" height="32"/>
</element>
<element name="lamp67" ref="lamp_67_1" state="0">
- <bounds x="170" y="245" width="28" height="28">
- </bounds>
+ <bounds x="170" y="245" width="28" height="28"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="168" y="214" width="32" height="32">
- </bounds>
+ <bounds x="168" y="214" width="32" height="32"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="170" y="216" width="28" height="28">
- </bounds>
+ <bounds x="170" y="216" width="28" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="197" y="214" width="32" height="32">
- </bounds>
+ <bounds x="197" y="214" width="32" height="32"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="199" y="216" width="28" height="28">
- </bounds>
+ <bounds x="199" y="216" width="28" height="28"/>
</element>
<element name="lamp117" ref="lamp_117_1_border" state="0">
- <bounds x="197" y="243" width="32" height="32">
- </bounds>
+ <bounds x="197" y="243" width="32" height="32"/>
</element>
<element name="lamp117" ref="lamp_117_1" state="0">
- <bounds x="199" y="245" width="28" height="28">
- </bounds>
+ <bounds x="199" y="245" width="28" height="28"/>
</element>
<element name="lamp102" ref="lamp_102_1_border" state="0">
- <bounds x="125" y="214" width="32" height="32">
- </bounds>
+ <bounds x="125" y="214" width="32" height="32"/>
</element>
<element name="lamp102" ref="lamp_102_1" state="0">
- <bounds x="127" y="216" width="28" height="28">
- </bounds>
+ <bounds x="127" y="216" width="28" height="28"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="125" y="243" width="32" height="32">
- </bounds>
+ <bounds x="125" y="243" width="32" height="32"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="127" y="245" width="28" height="28">
- </bounds>
+ <bounds x="127" y="245" width="28" height="28"/>
</element>
<element name="lamp65" ref="lamp_65_1_border" state="0">
- <bounds x="96" y="243" width="32" height="32">
- </bounds>
+ <bounds x="96" y="243" width="32" height="32"/>
</element>
<element name="lamp65" ref="lamp_65_1" state="0">
- <bounds x="98" y="245" width="28" height="28">
- </bounds>
+ <bounds x="98" y="245" width="28" height="28"/>
</element>
<element name="lamp66" ref="lamp_66_1_border" state="0">
- <bounds x="96" y="214" width="32" height="32">
- </bounds>
+ <bounds x="96" y="214" width="32" height="32"/>
</element>
<element name="lamp66" ref="lamp_66_1" state="0">
- <bounds x="98" y="216" width="28" height="28">
- </bounds>
+ <bounds x="98" y="216" width="28" height="28"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="268" y="285" width="32" height="32">
- </bounds>
+ <bounds x="268" y="285" width="32" height="32"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="270" y="287" width="28" height="28">
- </bounds>
+ <bounds x="270" y="287" width="28" height="28"/>
</element>
<element name="lamp182" ref="lamp_182_1_border" state="0">
- <bounds x="239" y="285" width="32" height="32">
- </bounds>
+ <bounds x="239" y="285" width="32" height="32"/>
</element>
<element name="lamp182" ref="lamp_182_1" state="0">
- <bounds x="241" y="287" width="28" height="28">
- </bounds>
+ <bounds x="241" y="287" width="28" height="28"/>
</element>
<element name="lamp181" ref="lamp_181_1_border" state="0">
- <bounds x="239" y="314" width="32" height="32">
- </bounds>
+ <bounds x="239" y="314" width="32" height="32"/>
</element>
<element name="lamp181" ref="lamp_181_1" state="0">
- <bounds x="241" y="316" width="28" height="28">
- </bounds>
+ <bounds x="241" y="316" width="28" height="28"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="268" y="314" width="32" height="32">
- </bounds>
+ <bounds x="268" y="314" width="32" height="32"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="270" y="316" width="28" height="28">
- </bounds>
+ <bounds x="270" y="316" width="28" height="28"/>
</element>
<element name="lamp166" ref="lamp_166_1_border" state="0">
- <bounds x="197" y="285" width="32" height="32">
- </bounds>
+ <bounds x="197" y="285" width="32" height="32"/>
</element>
<element name="lamp166" ref="lamp_166_1" state="0">
- <bounds x="199" y="287" width="28" height="28">
- </bounds>
+ <bounds x="199" y="287" width="28" height="28"/>
</element>
<element name="lamp165" ref="lamp_165_1_border" state="0">
- <bounds x="197" y="314" width="32" height="32">
- </bounds>
+ <bounds x="197" y="314" width="32" height="32"/>
</element>
<element name="lamp165" ref="lamp_165_1" state="0">
- <bounds x="199" y="316" width="28" height="28">
- </bounds>
+ <bounds x="199" y="316" width="28" height="28"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="168" y="285" width="32" height="32">
- </bounds>
+ <bounds x="168" y="285" width="32" height="32"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="170" y="287" width="28" height="28">
- </bounds>
+ <bounds x="170" y="287" width="28" height="28"/>
</element>
<element name="lamp50" ref="lamp_50_1_border" state="0">
- <bounds x="168" y="314" width="32" height="32">
- </bounds>
+ <bounds x="168" y="314" width="32" height="32"/>
</element>
<element name="lamp50" ref="lamp_50_1" state="0">
- <bounds x="170" y="316" width="28" height="28">
- </bounds>
+ <bounds x="170" y="316" width="28" height="28"/>
</element>
<element name="lamp150" ref="lamp_150_1_border" state="0">
- <bounds x="96" y="285" width="32" height="32">
- </bounds>
+ <bounds x="96" y="285" width="32" height="32"/>
</element>
<element name="lamp150" ref="lamp_150_1" state="0">
- <bounds x="98" y="287" width="28" height="28">
- </bounds>
+ <bounds x="98" y="287" width="28" height="28"/>
</element>
<element name="lamp149" ref="lamp_149_1_border" state="0">
- <bounds x="96" y="314" width="32" height="32">
- </bounds>
+ <bounds x="96" y="314" width="32" height="32"/>
</element>
<element name="lamp149" ref="lamp_149_1" state="0">
- <bounds x="98" y="316" width="28" height="28">
- </bounds>
+ <bounds x="98" y="316" width="28" height="28"/>
</element>
<element name="lamp48" ref="lamp_48_1_border" state="0">
- <bounds x="125" y="314" width="32" height="32">
- </bounds>
+ <bounds x="125" y="314" width="32" height="32"/>
</element>
<element name="lamp48" ref="lamp_48_1" state="0">
- <bounds x="127" y="316" width="28" height="28">
- </bounds>
+ <bounds x="127" y="316" width="28" height="28"/>
</element>
<element name="lamp49" ref="lamp_49_1_border" state="0">
- <bounds x="125" y="285" width="32" height="32">
- </bounds>
+ <bounds x="125" y="285" width="32" height="32"/>
</element>
<element name="lamp49" ref="lamp_49_1" state="0">
- <bounds x="127" y="287" width="28" height="28">
- </bounds>
+ <bounds x="127" y="287" width="28" height="28"/>
</element>
<element name="lamp85" ref="lamp_85_1_border" state="0">
- <bounds x="239" y="173" width="32" height="32">
- </bounds>
+ <bounds x="239" y="173" width="32" height="32"/>
</element>
<element name="lamp85" ref="lamp_85_1" state="0">
- <bounds x="241" y="175" width="28" height="28">
- </bounds>
+ <bounds x="241" y="175" width="28" height="28"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="239" y="144" width="32" height="32">
- </bounds>
+ <bounds x="239" y="144" width="32" height="32"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="241" y="146" width="28" height="28">
- </bounds>
+ <bounds x="241" y="146" width="28" height="28"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="268" y="173" width="32" height="32">
- </bounds>
+ <bounds x="268" y="173" width="32" height="32"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="270" y="175" width="28" height="28">
- </bounds>
+ <bounds x="270" y="175" width="28" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="268" y="144" width="32" height="32">
- </bounds>
+ <bounds x="268" y="144" width="32" height="32"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="270" y="146" width="28" height="28">
- </bounds>
+ <bounds x="270" y="146" width="28" height="28"/>
</element>
<element name="lamp133" ref="lamp_133_1_border" state="0">
- <bounds x="268" y="243" width="32" height="32">
- </bounds>
+ <bounds x="268" y="243" width="32" height="32"/>
</element>
<element name="lamp133" ref="lamp_133_1" state="0">
- <bounds x="270" y="245" width="28" height="28">
- </bounds>
+ <bounds x="270" y="245" width="28" height="28"/>
</element>
<element name="lamp134" ref="lamp_134_1_border" state="0">
- <bounds x="268" y="214" width="32" height="32">
- </bounds>
+ <bounds x="268" y="214" width="32" height="32"/>
</element>
<element name="lamp134" ref="lamp_134_1" state="0">
- <bounds x="270" y="216" width="28" height="28">
- </bounds>
+ <bounds x="270" y="216" width="28" height="28"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="239" y="243" width="32" height="32">
- </bounds>
+ <bounds x="239" y="243" width="32" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="241" y="245" width="28" height="28">
- </bounds>
+ <bounds x="241" y="245" width="28" height="28"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="239" y="214" width="32" height="32">
- </bounds>
+ <bounds x="239" y="214" width="32" height="32"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="241" y="216" width="28" height="28">
- </bounds>
+ <bounds x="241" y="216" width="28" height="28"/>
</element>
<element name="lamp164" ref="lamp_164_1_border" state="0">
- <bounds x="313" y="247" width="32" height="32">
- </bounds>
+ <bounds x="313" y="247" width="32" height="32"/>
</element>
<element name="lamp164" ref="lamp_164_1" state="0">
- <bounds x="315" y="249" width="28" height="28">
- </bounds>
+ <bounds x="315" y="249" width="28" height="28"/>
</element>
<element name="lamp176" ref="lamp_176_1_border" state="0">
- <bounds x="342" y="247" width="32" height="32">
- </bounds>
+ <bounds x="342" y="247" width="32" height="32"/>
</element>
<element name="lamp176" ref="lamp_176_1" state="0">
- <bounds x="344" y="249" width="28" height="28">
- </bounds>
+ <bounds x="344" y="249" width="28" height="28"/>
</element>
<element name="lamp177" ref="lamp_177_1_border" state="0">
- <bounds x="371" y="247" width="32" height="32">
- </bounds>
+ <bounds x="371" y="247" width="32" height="32"/>
</element>
<element name="lamp177" ref="lamp_177_1" state="0">
- <bounds x="373" y="249" width="28" height="28">
- </bounds>
+ <bounds x="373" y="249" width="28" height="28"/>
</element>
<element name="lamp129" ref="lamp_129_1_border" state="0">
- <bounds x="371" y="72" width="32" height="32">
- </bounds>
+ <bounds x="371" y="72" width="32" height="32"/>
</element>
<element name="lamp129" ref="lamp_129_1" state="0">
- <bounds x="373" y="74" width="28" height="28">
- </bounds>
+ <bounds x="373" y="74" width="28" height="28"/>
</element>
<element name="lamp128" ref="lamp_128_1_border" state="0">
- <bounds x="342" y="72" width="32" height="32">
- </bounds>
+ <bounds x="342" y="72" width="32" height="32"/>
</element>
<element name="lamp128" ref="lamp_128_1" state="0">
- <bounds x="344" y="74" width="28" height="28">
- </bounds>
+ <bounds x="344" y="74" width="28" height="28"/>
</element>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="313" y="72" width="32" height="32">
- </bounds>
+ <bounds x="313" y="72" width="32" height="32"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="315" y="74" width="28" height="28">
- </bounds>
+ <bounds x="315" y="74" width="28" height="28"/>
</element>
<element name="lamp130" ref="lamp_130_1_border" state="0">
- <bounds x="313" y="107" width="32" height="32">
- </bounds>
+ <bounds x="313" y="107" width="32" height="32"/>
</element>
<element name="lamp130" ref="lamp_130_1" state="0">
- <bounds x="315" y="109" width="28" height="28">
- </bounds>
+ <bounds x="315" y="109" width="28" height="28"/>
</element>
<element name="lamp131" ref="lamp_131_1_border" state="0">
- <bounds x="342" y="107" width="32" height="32">
- </bounds>
+ <bounds x="342" y="107" width="32" height="32"/>
</element>
<element name="lamp131" ref="lamp_131_1" state="0">
- <bounds x="344" y="109" width="28" height="28">
- </bounds>
+ <bounds x="344" y="109" width="28" height="28"/>
</element>
<element name="lamp132" ref="lamp_132_1_border" state="0">
- <bounds x="371" y="107" width="32" height="32">
- </bounds>
+ <bounds x="371" y="107" width="32" height="32"/>
</element>
<element name="lamp132" ref="lamp_132_1" state="0">
- <bounds x="373" y="109" width="28" height="28">
- </bounds>
+ <bounds x="373" y="109" width="28" height="28"/>
</element>
<element name="lamp160" ref="lamp_160_1_border" state="0">
- <bounds x="371" y="177" width="32" height="32">
- </bounds>
+ <bounds x="371" y="177" width="32" height="32"/>
</element>
<element name="lamp160" ref="lamp_160_1" state="0">
- <bounds x="373" y="179" width="28" height="28">
- </bounds>
+ <bounds x="373" y="179" width="28" height="28"/>
</element>
<element name="lamp163" ref="lamp_163_1_border" state="0">
- <bounds x="371" y="212" width="32" height="32">
- </bounds>
+ <bounds x="371" y="212" width="32" height="32"/>
</element>
<element name="lamp163" ref="lamp_163_1" state="0">
- <bounds x="373" y="214" width="28" height="28">
- </bounds>
+ <bounds x="373" y="214" width="28" height="28"/>
</element>
<element name="lamp162" ref="lamp_162_1_border" state="0">
- <bounds x="342" y="212" width="32" height="32">
- </bounds>
+ <bounds x="342" y="212" width="32" height="32"/>
</element>
<element name="lamp162" ref="lamp_162_1" state="0">
- <bounds x="344" y="214" width="28" height="28">
- </bounds>
+ <bounds x="344" y="214" width="28" height="28"/>
</element>
<element name="lamp161" ref="lamp_161_1_border" state="0">
- <bounds x="313" y="212" width="32" height="32">
- </bounds>
+ <bounds x="313" y="212" width="32" height="32"/>
</element>
<element name="lamp161" ref="lamp_161_1" state="0">
- <bounds x="315" y="214" width="28" height="28">
- </bounds>
+ <bounds x="315" y="214" width="28" height="28"/>
</element>
<element name="lamp148" ref="lamp_148_1_border" state="0">
- <bounds x="342" y="177" width="32" height="32">
- </bounds>
+ <bounds x="342" y="177" width="32" height="32"/>
</element>
<element name="lamp148" ref="lamp_148_1" state="0">
- <bounds x="344" y="179" width="28" height="28">
- </bounds>
+ <bounds x="344" y="179" width="28" height="28"/>
</element>
<element name="lamp147" ref="lamp_147_1_border" state="0">
- <bounds x="313" y="177" width="32" height="32">
- </bounds>
+ <bounds x="313" y="177" width="32" height="32"/>
</element>
<element name="lamp147" ref="lamp_147_1" state="0">
- <bounds x="315" y="179" width="28" height="28">
- </bounds>
+ <bounds x="315" y="179" width="28" height="28"/>
</element>
<element name="lamp146" ref="lamp_146_1_border" state="0">
- <bounds x="371" y="142" width="32" height="32">
- </bounds>
+ <bounds x="371" y="142" width="32" height="32"/>
</element>
<element name="lamp146" ref="lamp_146_1" state="0">
- <bounds x="373" y="144" width="28" height="28">
- </bounds>
+ <bounds x="373" y="144" width="28" height="28"/>
</element>
<element name="lamp145" ref="lamp_145_1_border" state="0">
- <bounds x="342" y="142" width="32" height="32">
- </bounds>
+ <bounds x="342" y="142" width="32" height="32"/>
</element>
<element name="lamp145" ref="lamp_145_1" state="0">
- <bounds x="344" y="144" width="28" height="28">
- </bounds>
+ <bounds x="344" y="144" width="28" height="28"/>
</element>
<element name="lamp144" ref="lamp_144_1_border" state="0">
- <bounds x="313" y="142" width="32" height="32">
- </bounds>
+ <bounds x="313" y="142" width="32" height="32"/>
</element>
<element name="lamp144" ref="lamp_144_1" state="0">
- <bounds x="315" y="144" width="28" height="28">
- </bounds>
+ <bounds x="315" y="144" width="28" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="235" y="14" width="32" height="32">
- </bounds>
+ <bounds x="235" y="14" width="32" height="32"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="237" y="16" width="28" height="28">
- </bounds>
+ <bounds x="237" y="16" width="28" height="28"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="47" y="14" width="102" height="32">
- </bounds>
+ <bounds x="47" y="14" width="102" height="32"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="49" y="16" width="98" height="28">
- </bounds>
+ <bounds x="49" y="16" width="98" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="272" y="14" width="102" height="32">
- </bounds>
+ <bounds x="272" y="14" width="102" height="32"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="274" y="16" width="98" height="28">
- </bounds>
+ <bounds x="274" y="16" width="98" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="196" y="14" width="32" height="32">
- </bounds>
+ <bounds x="196" y="14" width="32" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="198" y="16" width="28" height="28">
- </bounds>
+ <bounds x="198" y="16" width="28" height="28"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="154" y="14" width="32" height="32">
- </bounds>
+ <bounds x="154" y="14" width="32" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="156" y="16" width="28" height="28">
- </bounds>
+ <bounds x="156" y="16" width="28" height="28"/>
</element>
<element name="lamp213" ref="lamp_213_1_border" state="0">
- <bounds x="16" y="432" width="42" height="42">
- </bounds>
+ <bounds x="16" y="432" width="42" height="42"/>
</element>
<element name="lamp213" ref="lamp_213_1" state="0">
- <bounds x="18" y="434" width="38" height="38">
- </bounds>
+ <bounds x="18" y="434" width="38" height="38"/>
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="16" y="393" width="42" height="42">
- </bounds>
+ <bounds x="16" y="393" width="42" height="42"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="18" y="395" width="38" height="38">
- </bounds>
+ <bounds x="18" y="395" width="38" height="38"/>
</element>
<element name="lamp196" ref="lamp_196_1_border" state="0">
- <bounds x="16" y="471" width="42" height="42">
- </bounds>
+ <bounds x="16" y="471" width="42" height="42"/>
</element>
<element name="lamp196" ref="lamp_196_1" state="0">
- <bounds x="18" y="473" width="38" height="38">
- </bounds>
+ <bounds x="18" y="473" width="38" height="38"/>
</element>
<element name="lamp178" ref="colour_button_84_border" state="0" inputtag="J10_2" inputmask="0x02">
- <bounds x="303" y="289" width="62" height="62">
- </bounds>
+ <bounds x="303" y="289" width="62" height="62"/>
</element>
<element name="lamp178" ref="colour_button_84" state="0" inputtag="J10_2" inputmask="0x02">
- <bounds x="305" y="291" width="58" height="58">
- </bounds>
+ <bounds x="305" y="291" width="58" height="58"/>
</element>
<element name="lamp14" ref="colour_button_85_border" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="444" y="8" width="37" height="52">
- </bounds>
+ <bounds x="444" y="8" width="37" height="52"/>
</element>
<element name="lamp14" ref="colour_button_85" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="446" y="10" width="33" height="48">
- </bounds>
+ <bounds x="446" y="10" width="33" height="48"/>
</element>
<element name="lamp224" ref="colour_button_86_border" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="3" y="538" width="75" height="27">
- </bounds>
+ <bounds x="3" y="538" width="75" height="27"/>
</element>
<element name="lamp224" ref="colour_button_86" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="5" y="540" width="71" height="23">
- </bounds>
+ <bounds x="5" y="540" width="71" height="23"/>
</element>
<element name="lamp210" ref="colour_button_87_border" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="80" y="538" width="75" height="27">
- </bounds>
+ <bounds x="80" y="538" width="75" height="27"/>
</element>
<element name="lamp210" ref="colour_button_87" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="82" y="540" width="71" height="23">
- </bounds>
+ <bounds x="82" y="540" width="71" height="23"/>
</element>
<element name="lamp208" ref="colour_button_88_border" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="163" y="538" width="75" height="27">
- </bounds>
+ <bounds x="163" y="538" width="75" height="27"/>
</element>
<element name="lamp208" ref="colour_button_88" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="165" y="540" width="71" height="23">
- </bounds>
+ <bounds x="165" y="540" width="71" height="23"/>
</element>
<element name="lamp194" ref="colour_button_89_border" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="246" y="538" width="75" height="27">
- </bounds>
+ <bounds x="246" y="538" width="75" height="27"/>
</element>
<element name="lamp194" ref="colour_button_89" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="248" y="540" width="71" height="23">
- </bounds>
+ <bounds x="248" y="540" width="71" height="23"/>
</element>
<element name="lamp193" ref="colour_button_90_border" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="337" y="538" width="75" height="27">
- </bounds>
+ <bounds x="337" y="538" width="75" height="27"/>
</element>
<element name="lamp193" ref="colour_button_90" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="339" y="540" width="71" height="23">
- </bounds>
+ <bounds x="339" y="540" width="71" height="23"/>
</element>
<element name="lamp192" ref="colour_button_91_border" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="423" y="538" width="75" height="27">
- </bounds>
+ <bounds x="423" y="538" width="75" height="27"/>
</element>
<element name="lamp192" ref="colour_button_91" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="425" y="540" width="71" height="23">
- </bounds>
+ <bounds x="425" y="540" width="71" height="23"/>
</element>
<element name="digit2" ref="led_digit" state="0">
- <bounds x="129" y="73" width="35" height="50">
- </bounds>
+ <bounds x="129" y="73" width="35" height="50"/>
</element>
<element name="digit3" ref="led_digit" state="0">
- <bounds x="164" y="73" width="35" height="50">
- </bounds>
+ <bounds x="164" y="73" width="35" height="50"/>
</element>
<element name="digit4" ref="led_digit" state="0">
- <bounds x="199" y="73" width="35" height="50">
- </bounds>
+ <bounds x="199" y="73" width="35" height="50"/>
</element>
<element name="digit5" ref="led_digit" state="0">
- <bounds x="234" y="73" width="35" height="50">
- </bounds>
+ <bounds x="234" y="73" width="35" height="50"/>
</element>
<element name="digit0" ref="led_digit" state="0">
- <bounds x="404" y="304" width="24" height="32">
- </bounds>
+ <bounds x="404" y="304" width="24" height="32"/>
</element>
<element name="digit1" ref="led_digit" state="0">
- <bounds x="428" y="304" width="24" height="32">
- </bounds>
+ <bounds x="428" y="304" width="24" height="32"/>
</element>
<element name="label39" ref="label_39">
- <bounds x="257" y="364" width="77" height="20">
- </bounds>
+ <bounds x="257" y="364" width="77" height="20"/>
</element>
<element name="label40" ref="label_40">
- <bounds x="158" y="368" width="95" height="13">
- </bounds>
+ <bounds x="158" y="368" width="95" height="13"/>
</element>
<element name="label41" ref="label_41">
- <bounds x="68" y="368" width="17" height="13">
- </bounds>
+ <bounds x="68" y="368" width="17" height="13"/>
</element>
<element name="label42" ref="label_42">
- <bounds x="90" y="364" width="65" height="20">
- </bounds>
+ <bounds x="90" y="364" width="65" height="20"/>
</element>
<element name="label47" ref="label_47">
- <bounds x="88" y="60" width="37" height="78">
- </bounds>
+ <bounds x="88" y="60" width="37" height="78"/>
</element>
<element name="label66" ref="label_66">
- <bounds x="409" y="251" width="36" height="24">
- </bounds>
+ <bounds x="409" y="251" width="36" height="24"/>
</element>
<element name="label67" ref="label_67">
- <bounds x="409" y="217" width="51" height="24">
- </bounds>
+ <bounds x="409" y="217" width="51" height="24"/>
</element>
<element name="label68" ref="label_68">
- <bounds x="409" y="182" width="51" height="24">
- </bounds>
+ <bounds x="409" y="182" width="51" height="24"/>
</element>
<element name="label69" ref="label_69">
- <bounds x="409" y="147" width="51" height="24">
- </bounds>
+ <bounds x="409" y="147" width="51" height="24"/>
</element>
<element name="label70" ref="label_70">
- <bounds x="409" y="113" width="51" height="24">
- </bounds>
+ <bounds x="409" y="113" width="51" height="24"/>
</element>
<element name="label71" ref="label_71">
- <bounds x="406" y="76" width="82" height="24">
- </bounds>
+ <bounds x="406" y="76" width="82" height="24"/>
</element>
<element name="label80" ref="label_80">
- <bounds x="2" y="511" width="73" height="24">
- </bounds>
+ <bounds x="2" y="511" width="73" height="24"/>
</element>
<element name="label81" ref="label_81">
- <bounds x="409" y="341" width="32" height="13">
- </bounds>
+ <bounds x="409" y="341" width="32" height="13"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/j6quick.lay b/src/mame/layout/j6quick.lay
index 9d4c0aacac4..17306e08add 100644
--- a/src/mame/layout/j6quick.lay
+++ b/src/mame/layout/j6quick.lay
@@ -5309,8 +5309,7 @@
<param name="x" start="94" increment="15" />
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="281" width="15" height="30">
- </bounds>
+ <bounds x="~x~" y="281" width="15" height="30"/>
</element>
</repeat>
</view>
@@ -7240,12 +7239,11 @@
<bounds x="1708" y="1007" width="40" height="22"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="1150" increment="32" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="1150" increment="32"/>
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="600" width="32" height="48">
- </bounds>
+ <bounds x="~x~" y="600" width="32" height="48"/>
</element>
</repeat>
<element ref="reel_background">
diff --git a/src/mame/layout/j6rico10.lay b/src/mame/layout/j6rico10.lay
index 4ff2cef9e3e..a3d35ba69fd 100644
--- a/src/mame/layout/j6rico10.lay
+++ b/src/mame/layout/j6rico10.lay
@@ -8,5457 +8,4142 @@
<mamelayout version="2">
<element name="element_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_157_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_157_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10 Jackpot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_235_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_235_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="PLUS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUMBERS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_234_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_234_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="RANDOM">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="STOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_233_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_233_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="RESPIN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_232_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_232_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="SKILL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="STOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_228_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_228_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="SUPER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_229_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_229_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="NUMBERS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="IN VIEW">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_230_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_230_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="CHOOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="A TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_231_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_231_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_212_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_212_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="MAGNUM">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_254_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_254_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="SKILL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="FRUIT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_253_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_253_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="QUICK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="FIRE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_252_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_252_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="STOP A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="PRIZE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_251_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_251_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="REEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="STOPPA">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_250_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_250_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="HIT THE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="TOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_249_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_249_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_248_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_248_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_247_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_247_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_246_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_246_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_245_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_245_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_238_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_238_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="CHOOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="YOUR">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="NUMBER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_244_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_244_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="CHOOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="YOUR">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="NUMBER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_236_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_236_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_237_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_237_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_94_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_123_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_78_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_78_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_97_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Cherry &#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Mixed 7 &#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_102_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Grapes &#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_103_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Melon &#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_104_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Bell &#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_105_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_105_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x JPM &#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_106_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_106_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Blue 7 &#xA3;7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_107_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_107_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3 x Red 7 &#xA3;10 Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_145_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_145_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_144_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_144_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_146_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_146_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_147_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_147_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_148_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_148_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="SHARP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SHOOTER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_149_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_149_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="QUICK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SHOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_150_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_150_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="?NUDGES?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_151_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_151_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="CASH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="QUAKE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_152_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_152_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="CRAZY">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SPINS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_153_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_153_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="REVOLVER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_154_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_154_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="SUPER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SHOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_155_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_155_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="RICOCHET">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_128_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_128_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="H">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_129_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_129_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="H">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_139_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_139_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="UNLIMITED">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_138_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_138_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_137_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_137_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_136_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_136_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_135_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_135_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_134_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_134_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_133_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_133_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLDS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_132_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_132_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="SUPERHOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_131_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_131_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_130_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_130_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_141_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_141_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_125_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_125_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_171_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_171_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_170_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_170_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_169_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_169_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_168_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_168_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_167_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_167_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_166_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_166_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_165_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_165_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_164_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_164_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_163_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_163_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_162_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_162_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_160_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_160_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="T">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_161_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_161_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="T">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_92_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_93_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_93_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_173_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_173_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_81_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_85_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_85_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_87_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_87_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_88_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_89_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_89_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_90_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_90_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_91_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_91_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="16">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_75_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_75_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_74_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_74_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_73_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_73_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_72_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_72_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_71_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_71_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_70_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_69_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_69_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_67_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_67_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_66_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_64_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="I">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_65_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_65_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="I">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_48_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.25">
- </color>
+ <color red="0.50" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.06">
- </color>
+ <color red="0.12" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_48_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.50">
- </color>
+ <color red="1.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.13">
- </color>
+ <color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="R">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_49_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="R">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_59_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_59_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_58_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_58_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_57_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_57_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_56_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_56_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="JACKPOT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_55_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_55_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_53_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_53_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="REPEATER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_50_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.13">
- </color>
+ <color red="0.00" green="0.50" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.03">
- </color>
+ <color red="0.00" green="0.12" blue="0.03"/>
</rect>
</element>
<element name="lamp_50_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.25">
- </color>
+ <color red="0.00" green="1.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.06">
- </color>
+ <color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="YES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_61_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_61_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_76_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_76_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="NO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_128_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_128">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_129_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_129">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_130_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_130">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_131_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_131">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_132_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_132">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_133_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_133">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD/LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_134_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_134">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD/HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_135_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_135">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_136_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_136">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="BOTTOM">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_137_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_137">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="MIDDLE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_138_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_138">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="TOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Red 7,Melon,Bell,Grapes(B2),Cherry,Bell(R3),Grapes(?),Cherry,Melon,Blue 7(B1),Grapes,Melon,JPM,Cherry,Blue 7(R2),Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Red 7,Melon,Bell(?),Grapes(R3),Cherry,Bell(B3),Grapes,Cherry,Melon,Red 7(R2),Grapes,Melon,JPM,Cherry(B1),Blue 7,Cherry(1)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Red 7,Melon(R2),Bell,Grapes,Cherry(R4),Bell,Grapes,Cherry(B1),Melon,Blue 7,Grapes(B2),Melon(?),JPM,Cherry,Blue 7,Cherry(R3)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="0" stateoffset="-1365" numsymbolsvisible="3" symbollist="12,3,10,5,11,7,1,8,4,9,2,6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_127">
<text string="Credits">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="element_colour">
- <bounds x="0" y="0" width="771" height="637">
- </bounds>
+ <bounds x="0" y="0" width="771" height="637"/>
</element>
<element ref="reel_background">
- <bounds x="107" y="412" width="90" height="160">
- </bounds>
+ <bounds x="107" y="412" width="90" height="160"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="107.0000" y="412.0000" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="107.0000" y="412.0000" width="90.0000" height="53.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="110.7500" y="414.2222" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="110.7500" y="414.2222" width="82.5000" height="48.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="114.5000" y="416.4445" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="114.5000" y="416.4445" width="75.0000" height="44.4444"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="118.2500" y="418.6667" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="118.2500" y="418.6667" width="67.5000" height="40.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="122.0000" y="420.8889" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="122.0000" y="420.8889" width="60.0000" height="35.5556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="125.7500" y="423.1111" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="125.7500" y="423.1111" width="52.5000" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="107.0000" y="465.3333" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="107.0000" y="465.3333" width="90.0000" height="53.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="110.7500" y="467.5556" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="110.7500" y="467.5556" width="82.5000" height="48.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="114.5000" y="469.7778" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="114.5000" y="469.7778" width="75.0000" height="44.4444"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="118.2500" y="472.0000" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="118.2500" y="472.0000" width="67.5000" height="40.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="122.0000" y="474.2222" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="122.0000" y="474.2222" width="60.0000" height="35.5556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="125.7500" y="476.4445" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="125.7500" y="476.4445" width="52.5000" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="107.0000" y="518.6667" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="107.0000" y="518.6667" width="90.0000" height="53.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="110.7500" y="520.8889" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="110.7500" y="520.8889" width="82.5000" height="48.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="114.5000" y="523.1111" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="114.5000" y="523.1111" width="75.0000" height="44.4444"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="118.2500" y="525.3334" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="118.2500" y="525.3334" width="67.5000" height="40.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="122.0000" y="527.5556" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="122.0000" y="527.5556" width="60.0000" height="35.5556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="125.7500" y="529.7778" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="125.7500" y="529.7778" width="52.5000" height="31.1111"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="107" y="412" width="90" height="160">
- </bounds>
+ <bounds x="107" y="412" width="90" height="160"/>
</element>
<element ref="reel_background">
- <bounds x="199" y="412" width="90" height="160">
- </bounds>
+ <bounds x="199" y="412" width="90" height="160"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="199.0000" y="412.0000" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="199.0000" y="412.0000" width="90.0000" height="53.3333"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="202.7500" y="414.2222" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="202.7500" y="414.2222" width="82.5000" height="48.8889"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="206.5000" y="416.4445" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="206.5000" y="416.4445" width="75.0000" height="44.4444"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="210.2500" y="418.6667" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="210.2500" y="418.6667" width="67.5000" height="40.0000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.0000" y="420.8889" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="214.0000" y="420.8889" width="60.0000" height="35.5556"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.7500" y="423.1111" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="217.7500" y="423.1111" width="52.5000" height="31.1111"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="199.0000" y="465.3333" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="199.0000" y="465.3333" width="90.0000" height="53.3333"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="202.7500" y="467.5556" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="202.7500" y="467.5556" width="82.5000" height="48.8889"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="206.5000" y="469.7778" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="206.5000" y="469.7778" width="75.0000" height="44.4444"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="210.2500" y="472.0000" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="210.2500" y="472.0000" width="67.5000" height="40.0000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.0000" y="474.2222" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="214.0000" y="474.2222" width="60.0000" height="35.5556"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.7500" y="476.4445" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="217.7500" y="476.4445" width="52.5000" height="31.1111"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="199.0000" y="518.6667" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="199.0000" y="518.6667" width="90.0000" height="53.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="202.7500" y="520.8889" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="202.7500" y="520.8889" width="82.5000" height="48.8889"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="206.5000" y="523.1111" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="206.5000" y="523.1111" width="75.0000" height="44.4444"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="210.2500" y="525.3334" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="210.2500" y="525.3334" width="67.5000" height="40.0000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.0000" y="527.5556" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="214.0000" y="527.5556" width="60.0000" height="35.5556"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.7500" y="529.7778" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="217.7500" y="529.7778" width="52.5000" height="31.1111"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="199" y="412" width="90" height="160">
- </bounds>
+ <bounds x="199" y="412" width="90" height="160"/>
</element>
<element ref="reel_background">
- <bounds x="291" y="412" width="90" height="160">
- </bounds>
+ <bounds x="291" y="412" width="90" height="160"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="291.0000" y="412.0000" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="291.0000" y="412.0000" width="90.0000" height="53.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="294.7500" y="414.2222" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="294.7500" y="414.2222" width="82.5000" height="48.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="298.5000" y="416.4445" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="298.5000" y="416.4445" width="75.0000" height="44.4444"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="302.2500" y="418.6667" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="302.2500" y="418.6667" width="67.5000" height="40.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="306.0000" y="420.8889" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="306.0000" y="420.8889" width="60.0000" height="35.5556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="309.7500" y="423.1111" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="309.7500" y="423.1111" width="52.5000" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="291.0000" y="465.3333" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="291.0000" y="465.3333" width="90.0000" height="53.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="294.7500" y="467.5556" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="294.7500" y="467.5556" width="82.5000" height="48.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="298.5000" y="469.7778" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="298.5000" y="469.7778" width="75.0000" height="44.4444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="302.2500" y="472.0000" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="302.2500" y="472.0000" width="67.5000" height="40.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="306.0000" y="474.2222" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="306.0000" y="474.2222" width="60.0000" height="35.5556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="309.7500" y="476.4445" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="309.7500" y="476.4445" width="52.5000" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="291.0000" y="518.6667" width="90.0000" height="53.3333">
- </bounds>
+ <bounds x="291.0000" y="518.6667" width="90.0000" height="53.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="294.7500" y="520.8889" width="82.5000" height="48.8889">
- </bounds>
+ <bounds x="294.7500" y="520.8889" width="82.5000" height="48.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="298.5000" y="523.1111" width="75.0000" height="44.4444">
- </bounds>
+ <bounds x="298.5000" y="523.1111" width="75.0000" height="44.4444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="302.2500" y="525.3334" width="67.5000" height="40.0000">
- </bounds>
+ <bounds x="302.2500" y="525.3334" width="67.5000" height="40.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="306.0000" y="527.5556" width="60.0000" height="35.5556">
- </bounds>
+ <bounds x="306.0000" y="527.5556" width="60.0000" height="35.5556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="309.7500" y="529.7778" width="52.5000" height="31.1111">
- </bounds>
+ <bounds x="309.7500" y="529.7778" width="52.5000" height="31.1111"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="291" y="412" width="90" height="160">
- </bounds>
+ <bounds x="291" y="412" width="90" height="160"/>
</element>
<element ref="reel_background">
- <bounds x="398" y="446" width="60" height="100">
- </bounds>
+ <bounds x="398" y="446" width="60" height="100"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_0" state="0">
- <bounds x="398.0000" y="446.0000" width="60.0000" height="33.3333">
- </bounds>
+ <bounds x="398.0000" y="446.0000" width="60.0000" height="33.3333"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_1" state="0">
- <bounds x="400.5000" y="447.3889" width="55.0000" height="30.5556">
- </bounds>
+ <bounds x="400.5000" y="447.3889" width="55.0000" height="30.5556"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_2" state="0">
- <bounds x="403.0000" y="448.7778" width="50.0000" height="27.7778">
- </bounds>
+ <bounds x="403.0000" y="448.7778" width="50.0000" height="27.7778"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_3" state="0">
- <bounds x="405.5000" y="450.1667" width="45.0000" height="25.0000">
- </bounds>
+ <bounds x="405.5000" y="450.1667" width="45.0000" height="25.0000"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_4" state="0">
- <bounds x="408.0000" y="451.5555" width="40.0000" height="22.2222">
- </bounds>
+ <bounds x="408.0000" y="451.5555" width="40.0000" height="22.2222"/>
</element>
<element name="lamp21" ref="reel_lamp_layer_5" state="0">
- <bounds x="410.5000" y="452.9445" width="35.0000" height="19.4444">
- </bounds>
+ <bounds x="410.5000" y="452.9445" width="35.0000" height="19.4444"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="398.0000" y="479.3333" width="60.0000" height="33.3333">
- </bounds>
+ <bounds x="398.0000" y="479.3333" width="60.0000" height="33.3333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="400.5000" y="480.7222" width="55.0000" height="30.5556">
- </bounds>
+ <bounds x="400.5000" y="480.7222" width="55.0000" height="30.5556"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="403.0000" y="482.1111" width="50.0000" height="27.7778">
- </bounds>
+ <bounds x="403.0000" y="482.1111" width="50.0000" height="27.7778"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="405.5000" y="483.5000" width="45.0000" height="25.0000">
- </bounds>
+ <bounds x="405.5000" y="483.5000" width="45.0000" height="25.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="408.0000" y="484.8889" width="40.0000" height="22.2222">
- </bounds>
+ <bounds x="408.0000" y="484.8889" width="40.0000" height="22.2222"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="410.5000" y="486.2778" width="35.0000" height="19.4444">
- </bounds>
+ <bounds x="410.5000" y="486.2778" width="35.0000" height="19.4444"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_0" state="0">
- <bounds x="398.0000" y="512.6667" width="60.0000" height="33.3333">
- </bounds>
+ <bounds x="398.0000" y="512.6667" width="60.0000" height="33.3333"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_1" state="0">
- <bounds x="400.5000" y="514.0556" width="55.0000" height="30.5556">
- </bounds>
+ <bounds x="400.5000" y="514.0556" width="55.0000" height="30.5556"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_2" state="0">
- <bounds x="403.0000" y="515.4445" width="50.0000" height="27.7778">
- </bounds>
+ <bounds x="403.0000" y="515.4445" width="50.0000" height="27.7778"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_3" state="0">
- <bounds x="405.5000" y="516.8334" width="45.0000" height="25.0000">
- </bounds>
+ <bounds x="405.5000" y="516.8334" width="45.0000" height="25.0000"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_4" state="0">
- <bounds x="408.0000" y="518.2222" width="40.0000" height="22.2222">
- </bounds>
+ <bounds x="408.0000" y="518.2222" width="40.0000" height="22.2222"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_5" state="0">
- <bounds x="410.5000" y="519.6111" width="35.0000" height="19.4444">
- </bounds>
+ <bounds x="410.5000" y="519.6111" width="35.0000" height="19.4444"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="398" y="446" width="60" height="100">
- </bounds>
+ <bounds x="398" y="446" width="60" height="100"/>
</element>
<element name="lamp157" ref="lamp_157_1_border" state="0">
- <bounds x="560" y="1" width="122" height="42">
- </bounds>
+ <bounds x="560" y="1" width="122" height="42"/>
</element>
<element name="lamp157" ref="lamp_157_1" state="0">
- <bounds x="562" y="3" width="118" height="38">
- </bounds>
+ <bounds x="562" y="3" width="118" height="38"/>
</element>
<element name="lamp235" ref="lamp_235_1_border" state="0">
- <bounds x="302" y="380" width="62" height="32">
- </bounds>
+ <bounds x="302" y="380" width="62" height="32"/>
</element>
<element name="lamp235" ref="lamp_235_1" state="0">
- <bounds x="304" y="382" width="58" height="28">
- </bounds>
+ <bounds x="304" y="382" width="58" height="28"/>
</element>
<element name="lamp234" ref="lamp_234_1_border" state="0">
- <bounds x="243" y="380" width="62" height="32">
- </bounds>
+ <bounds x="243" y="380" width="62" height="32"/>
</element>
<element name="lamp234" ref="lamp_234_1" state="0">
- <bounds x="245" y="382" width="58" height="28">
- </bounds>
+ <bounds x="245" y="382" width="58" height="28"/>
</element>
<element name="lamp233" ref="lamp_233_1_border" state="0">
- <bounds x="184" y="380" width="62" height="32">
- </bounds>
+ <bounds x="184" y="380" width="62" height="32"/>
</element>
<element name="lamp233" ref="lamp_233_1" state="0">
- <bounds x="186" y="382" width="58" height="28">
- </bounds>
+ <bounds x="186" y="382" width="58" height="28"/>
</element>
<element name="lamp232" ref="lamp_232_1_border" state="0">
- <bounds x="125" y="380" width="62" height="32">
- </bounds>
+ <bounds x="125" y="380" width="62" height="32"/>
</element>
<element name="lamp232" ref="lamp_232_1" state="0">
- <bounds x="127" y="382" width="58" height="28">
- </bounds>
+ <bounds x="127" y="382" width="58" height="28"/>
</element>
<element name="lamp228" ref="lamp_228_1_border" state="0">
- <bounds x="124" y="573" width="62" height="32">
- </bounds>
+ <bounds x="124" y="573" width="62" height="32"/>
</element>
<element name="lamp228" ref="lamp_228_1" state="0">
- <bounds x="126" y="575" width="58" height="28">
- </bounds>
+ <bounds x="126" y="575" width="58" height="28"/>
</element>
<element name="lamp229" ref="lamp_229_1_border" state="0">
- <bounds x="183" y="573" width="62" height="32">
- </bounds>
+ <bounds x="183" y="573" width="62" height="32"/>
</element>
<element name="lamp229" ref="lamp_229_1" state="0">
- <bounds x="185" y="575" width="58" height="28">
- </bounds>
+ <bounds x="185" y="575" width="58" height="28"/>
</element>
<element name="lamp230" ref="lamp_230_1_border" state="0">
- <bounds x="242" y="573" width="62" height="32">
- </bounds>
+ <bounds x="242" y="573" width="62" height="32"/>
</element>
<element name="lamp230" ref="lamp_230_1" state="0">
- <bounds x="244" y="575" width="58" height="28">
- </bounds>
+ <bounds x="244" y="575" width="58" height="28"/>
</element>
<element name="lamp231" ref="lamp_231_1_border" state="0">
- <bounds x="301" y="573" width="62" height="32">
- </bounds>
+ <bounds x="301" y="573" width="62" height="32"/>
</element>
<element name="lamp231" ref="lamp_231_1" state="0">
- <bounds x="303" y="575" width="58" height="28">
- </bounds>
+ <bounds x="303" y="575" width="58" height="28"/>
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="702" y="507" width="62" height="32">
- </bounds>
+ <bounds x="702" y="507" width="62" height="32"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="704" y="509" width="58" height="28">
- </bounds>
+ <bounds x="704" y="509" width="58" height="28"/>
</element>
<element name="lamp254" ref="lamp_254_1_border" state="0">
- <bounds x="702" y="478" width="62" height="32">
- </bounds>
+ <bounds x="702" y="478" width="62" height="32"/>
</element>
<element name="lamp254" ref="lamp_254_1" state="0">
- <bounds x="704" y="480" width="58" height="28">
- </bounds>
+ <bounds x="704" y="480" width="58" height="28"/>
</element>
<element name="lamp253" ref="lamp_253_1_border" state="0">
- <bounds x="702" y="449" width="62" height="32">
- </bounds>
+ <bounds x="702" y="449" width="62" height="32"/>
</element>
<element name="lamp253" ref="lamp_253_1" state="0">
- <bounds x="704" y="451" width="58" height="28">
- </bounds>
+ <bounds x="704" y="451" width="58" height="28"/>
</element>
<element name="lamp252" ref="lamp_252_1_border" state="0">
- <bounds x="643" y="507" width="62" height="32">
- </bounds>
+ <bounds x="643" y="507" width="62" height="32"/>
</element>
<element name="lamp252" ref="lamp_252_1" state="0">
- <bounds x="645" y="509" width="58" height="28">
- </bounds>
+ <bounds x="645" y="509" width="58" height="28"/>
</element>
<element name="lamp251" ref="lamp_251_1_border" state="0">
- <bounds x="643" y="478" width="62" height="32">
- </bounds>
+ <bounds x="643" y="478" width="62" height="32"/>
</element>
<element name="lamp251" ref="lamp_251_1" state="0">
- <bounds x="645" y="480" width="58" height="28">
- </bounds>
+ <bounds x="645" y="480" width="58" height="28"/>
</element>
<element name="lamp250" ref="lamp_250_1_border" state="0">
- <bounds x="643" y="449" width="62" height="32">
- </bounds>
+ <bounds x="643" y="449" width="62" height="32"/>
</element>
<element name="lamp250" ref="lamp_250_1" state="0">
- <bounds x="645" y="451" width="58" height="28">
- </bounds>
+ <bounds x="645" y="451" width="58" height="28"/>
</element>
<element name="lamp249" ref="lamp_249_1_border" state="0">
- <bounds x="576" y="414" width="42" height="32">
- </bounds>
+ <bounds x="576" y="414" width="42" height="32"/>
</element>
<element name="lamp249" ref="lamp_249_1" state="0">
- <bounds x="578" y="416" width="38" height="28">
- </bounds>
+ <bounds x="578" y="416" width="38" height="28"/>
</element>
<element name="lamp248" ref="lamp_248_1_border" state="0">
- <bounds x="576" y="446" width="42" height="32">
- </bounds>
+ <bounds x="576" y="446" width="42" height="32"/>
</element>
<element name="lamp248" ref="lamp_248_1" state="0">
- <bounds x="578" y="448" width="38" height="28">
- </bounds>
+ <bounds x="578" y="448" width="38" height="28"/>
</element>
<element name="lamp247" ref="lamp_247_1_border" state="0">
- <bounds x="576" y="478" width="42" height="32">
- </bounds>
+ <bounds x="576" y="478" width="42" height="32"/>
</element>
<element name="lamp247" ref="lamp_247_1" state="0">
- <bounds x="578" y="480" width="38" height="28">
- </bounds>
+ <bounds x="578" y="480" width="38" height="28"/>
</element>
<element name="lamp246" ref="lamp_246_1_border" state="0">
- <bounds x="576" y="510" width="42" height="32">
- </bounds>
+ <bounds x="576" y="510" width="42" height="32"/>
</element>
<element name="lamp246" ref="lamp_246_1" state="0">
- <bounds x="578" y="512" width="38" height="28">
- </bounds>
+ <bounds x="578" y="512" width="38" height="28"/>
</element>
<element name="lamp245" ref="lamp_245_1_border" state="0">
- <bounds x="576" y="542" width="42" height="32">
- </bounds>
+ <bounds x="576" y="542" width="42" height="32"/>
</element>
<element name="lamp245" ref="lamp_245_1" state="0">
- <bounds x="578" y="544" width="38" height="28">
- </bounds>
+ <bounds x="578" y="544" width="38" height="28"/>
</element>
<element name="lamp238" ref="lamp_238_1_border" state="0">
- <bounds x="486" y="539" width="52" height="52">
- </bounds>
+ <bounds x="486" y="539" width="52" height="52"/>
</element>
<element name="lamp238" ref="lamp_238_1" state="0">
- <bounds x="488" y="541" width="48" height="48">
- </bounds>
+ <bounds x="488" y="541" width="48" height="48"/>
</element>
<element name="lamp244" ref="lamp_244_1_border" state="0">
- <bounds x="486" y="399" width="52" height="52">
- </bounds>
+ <bounds x="486" y="399" width="52" height="52"/>
</element>
<element name="lamp244" ref="lamp_244_1" state="0">
- <bounds x="488" y="401" width="48" height="48">
- </bounds>
+ <bounds x="488" y="401" width="48" height="48"/>
</element>
<element name="lamp236" ref="lamp_236_1_border" state="0">
- <bounds x="415" y="419" width="27" height="27">
- </bounds>
+ <bounds x="415" y="419" width="27" height="27"/>
</element>
<element name="lamp236" ref="lamp_236_1" state="0">
- <bounds x="417" y="421" width="23" height="23">
- </bounds>
+ <bounds x="417" y="421" width="23" height="23"/>
</element>
<element name="lamp237" ref="lamp_237_1_border" state="0">
- <bounds x="415" y="546" width="27" height="27">
- </bounds>
+ <bounds x="415" y="546" width="27" height="27"/>
</element>
<element name="lamp237" ref="lamp_237_1" state="0">
- <bounds x="417" y="548" width="23" height="23">
- </bounds>
+ <bounds x="417" y="548" width="23" height="23"/>
</element>
<element name="lamp94" ref="lamp_94_1_border" state="0">
- <bounds x="283" y="131" width="27" height="27">
- </bounds>
+ <bounds x="283" y="131" width="27" height="27"/>
</element>
<element name="lamp94" ref="lamp_94_1" state="0">
- <bounds x="285" y="133" width="23" height="23">
- </bounds>
+ <bounds x="285" y="133" width="23" height="23"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="283" y="188" width="27" height="27">
- </bounds>
+ <bounds x="283" y="188" width="27" height="27"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="285" y="190" width="23" height="23">
- </bounds>
+ <bounds x="285" y="190" width="23" height="23"/>
</element>
<element name="lamp109" ref="lamp_109_1_border" state="0">
- <bounds x="460" y="188" width="27" height="27">
- </bounds>
+ <bounds x="460" y="188" width="27" height="27"/>
</element>
<element name="lamp109" ref="lamp_109_1" state="0">
- <bounds x="462" y="190" width="23" height="23">
- </bounds>
+ <bounds x="462" y="190" width="23" height="23"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="460" y="131" width="27" height="27">
- </bounds>
+ <bounds x="460" y="131" width="27" height="27"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="462" y="133" width="23" height="23">
- </bounds>
+ <bounds x="462" y="133" width="23" height="23"/>
</element>
<element name="lamp123" ref="lamp_123_1_border" state="0">
- <bounds x="460" y="73" width="27" height="27">
- </bounds>
+ <bounds x="460" y="73" width="27" height="27"/>
</element>
<element name="lamp123" ref="lamp_123_1" state="0">
- <bounds x="462" y="75" width="23" height="23">
- </bounds>
+ <bounds x="462" y="75" width="23" height="23"/>
</element>
<element name="lamp78" ref="lamp_78_1_border" state="0">
- <bounds x="283" y="73" width="27" height="27">
- </bounds>
+ <bounds x="283" y="73" width="27" height="27"/>
</element>
<element name="lamp78" ref="lamp_78_1" state="0">
- <bounds x="285" y="75" width="23" height="23">
- </bounds>
+ <bounds x="285" y="75" width="23" height="23"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="309" y="319" width="77" height="32">
- </bounds>
+ <bounds x="309" y="319" width="77" height="32"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="311" y="321" width="73" height="28">
- </bounds>
+ <bounds x="311" y="321" width="73" height="28"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="309" y="348" width="77" height="32">
- </bounds>
+ <bounds x="309" y="348" width="77" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="311" y="350" width="73" height="28">
- </bounds>
+ <bounds x="311" y="350" width="73" height="28"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="383" y="319" width="77" height="32">
- </bounds>
+ <bounds x="383" y="319" width="77" height="32"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="385" y="321" width="73" height="28">
- </bounds>
+ <bounds x="385" y="321" width="73" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="383" y="348" width="77" height="32">
- </bounds>
+ <bounds x="383" y="348" width="77" height="32"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="385" y="350" width="73" height="28">
- </bounds>
+ <bounds x="385" y="350" width="73" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="309" y="302" width="152" height="17">
- </bounds>
+ <bounds x="309" y="302" width="152" height="17"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="311" y="304" width="148" height="13">
- </bounds>
+ <bounds x="311" y="304" width="148" height="13"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="309" y="273" width="152" height="32">
- </bounds>
+ <bounds x="309" y="273" width="152" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="311" y="275" width="148" height="28">
- </bounds>
+ <bounds x="311" y="275" width="148" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="309" y="244" width="152" height="32">
- </bounds>
+ <bounds x="309" y="244" width="152" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="311" y="246" width="148" height="28">
- </bounds>
+ <bounds x="311" y="246" width="148" height="28"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="309" y="215" width="152" height="32">
- </bounds>
+ <bounds x="309" y="215" width="152" height="32"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="311" y="217" width="148" height="28">
- </bounds>
+ <bounds x="311" y="217" width="148" height="28"/>
</element>
<element name="lamp102" ref="lamp_102_1_border" state="0">
- <bounds x="309" y="186" width="152" height="32">
- </bounds>
+ <bounds x="309" y="186" width="152" height="32"/>
</element>
<element name="lamp102" ref="lamp_102_1" state="0">
- <bounds x="311" y="188" width="148" height="28">
- </bounds>
+ <bounds x="311" y="188" width="148" height="28"/>
</element>
<element name="lamp103" ref="lamp_103_1_border" state="0">
- <bounds x="309" y="157" width="152" height="32">
- </bounds>
+ <bounds x="309" y="157" width="152" height="32"/>
</element>
<element name="lamp103" ref="lamp_103_1" state="0">
- <bounds x="311" y="159" width="148" height="28">
- </bounds>
+ <bounds x="311" y="159" width="148" height="28"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="309" y="128" width="152" height="32">
- </bounds>
+ <bounds x="309" y="128" width="152" height="32"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="311" y="130" width="148" height="28">
- </bounds>
+ <bounds x="311" y="130" width="148" height="28"/>
</element>
<element name="lamp105" ref="lamp_105_1_border" state="0">
- <bounds x="309" y="99" width="152" height="32">
- </bounds>
+ <bounds x="309" y="99" width="152" height="32"/>
</element>
<element name="lamp105" ref="lamp_105_1" state="0">
- <bounds x="311" y="101" width="148" height="28">
- </bounds>
+ <bounds x="311" y="101" width="148" height="28"/>
</element>
<element name="lamp106" ref="lamp_106_1_border" state="0">
- <bounds x="309" y="70" width="152" height="32">
- </bounds>
+ <bounds x="309" y="70" width="152" height="32"/>
</element>
<element name="lamp106" ref="lamp_106_1" state="0">
- <bounds x="311" y="72" width="148" height="28">
- </bounds>
+ <bounds x="311" y="72" width="148" height="28"/>
</element>
<element name="lamp107" ref="lamp_107_1_border" state="0">
- <bounds x="309" y="41" width="152" height="32">
- </bounds>
+ <bounds x="309" y="41" width="152" height="32"/>
</element>
<element name="lamp107" ref="lamp_107_1" state="0">
- <bounds x="311" y="43" width="148" height="28">
- </bounds>
+ <bounds x="311" y="43" width="148" height="28"/>
</element>
<element name="lamp144" ref="lamp_144_1_border" state="0">
- <bounds x="588" y="347" width="77" height="32">
- </bounds>
+ <bounds x="588" y="347" width="77" height="32"/>
</element>
<element name="lamp144" ref="lamp_144_1" state="0">
- <bounds x="590" y="349" width="73" height="28">
- </bounds>
+ <bounds x="590" y="349" width="73" height="28"/>
</element>
<element name="lamp145" ref="lamp_145_1_border" state="0">
- <bounds x="588" y="318" width="77" height="32">
- </bounds>
+ <bounds x="588" y="318" width="77" height="32"/>
</element>
<element name="lamp145" ref="lamp_145_1" state="0">
- <bounds x="590" y="320" width="73" height="28">
- </bounds>
+ <bounds x="590" y="320" width="73" height="28"/>
</element>
<element name="lamp146" ref="lamp_146_1_border" state="0">
- <bounds x="588" y="302" width="77" height="17">
- </bounds>
+ <bounds x="588" y="302" width="77" height="17"/>
</element>
<element name="lamp146" ref="lamp_146_1" state="0">
- <bounds x="590" y="304" width="73" height="13">
- </bounds>
+ <bounds x="590" y="304" width="73" height="13"/>
</element>
<element name="lamp147" ref="lamp_147_1_border" state="0">
- <bounds x="588" y="273" width="77" height="32">
- </bounds>
+ <bounds x="588" y="273" width="77" height="32"/>
</element>
<element name="lamp147" ref="lamp_147_1" state="0">
- <bounds x="590" y="275" width="73" height="28">
- </bounds>
+ <bounds x="590" y="275" width="73" height="28"/>
</element>
<element name="lamp148" ref="lamp_148_1_border" state="0">
- <bounds x="588" y="244" width="77" height="32">
- </bounds>
+ <bounds x="588" y="244" width="77" height="32"/>
</element>
<element name="lamp148" ref="lamp_148_1" state="0">
- <bounds x="590" y="246" width="73" height="28">
- </bounds>
+ <bounds x="590" y="246" width="73" height="28"/>
</element>
<element name="lamp149" ref="lamp_149_1_border" state="0">
- <bounds x="588" y="215" width="77" height="32">
- </bounds>
+ <bounds x="588" y="215" width="77" height="32"/>
</element>
<element name="lamp149" ref="lamp_149_1" state="0">
- <bounds x="590" y="217" width="73" height="28">
- </bounds>
+ <bounds x="590" y="217" width="73" height="28"/>
</element>
<element name="lamp150" ref="lamp_150_1_border" state="0">
- <bounds x="588" y="186" width="77" height="32">
- </bounds>
+ <bounds x="588" y="186" width="77" height="32"/>
</element>
<element name="lamp150" ref="lamp_150_1" state="0">
- <bounds x="590" y="188" width="73" height="28">
- </bounds>
+ <bounds x="590" y="188" width="73" height="28"/>
</element>
<element name="lamp151" ref="lamp_151_1_border" state="0">
- <bounds x="588" y="157" width="77" height="32">
- </bounds>
+ <bounds x="588" y="157" width="77" height="32"/>
</element>
<element name="lamp151" ref="lamp_151_1" state="0">
- <bounds x="590" y="159" width="73" height="28">
- </bounds>
+ <bounds x="590" y="159" width="73" height="28"/>
</element>
<element name="lamp152" ref="lamp_152_1_border" state="0">
- <bounds x="588" y="128" width="77" height="32">
- </bounds>
+ <bounds x="588" y="128" width="77" height="32"/>
</element>
<element name="lamp152" ref="lamp_152_1" state="0">
- <bounds x="590" y="130" width="73" height="28">
- </bounds>
+ <bounds x="590" y="130" width="73" height="28"/>
</element>
<element name="lamp153" ref="lamp_153_1_border" state="0">
- <bounds x="588" y="99" width="77" height="32">
- </bounds>
+ <bounds x="588" y="99" width="77" height="32"/>
</element>
<element name="lamp153" ref="lamp_153_1" state="0">
- <bounds x="590" y="101" width="73" height="28">
- </bounds>
+ <bounds x="590" y="101" width="73" height="28"/>
</element>
<element name="lamp154" ref="lamp_154_1_border" state="0">
- <bounds x="588" y="70" width="77" height="32">
- </bounds>
+ <bounds x="588" y="70" width="77" height="32"/>
</element>
<element name="lamp154" ref="lamp_154_1" state="0">
- <bounds x="590" y="72" width="73" height="28">
- </bounds>
+ <bounds x="590" y="72" width="73" height="28"/>
</element>
<element name="lamp155" ref="lamp_155_1_border" state="0">
- <bounds x="588" y="41" width="77" height="32">
- </bounds>
+ <bounds x="588" y="41" width="77" height="32"/>
</element>
<element name="lamp155" ref="lamp_155_1" state="0">
- <bounds x="590" y="43" width="73" height="28">
- </bounds>
+ <bounds x="590" y="43" width="73" height="28"/>
</element>
<element name="lamp128" ref="lamp_128_1_border" state="0">
- <bounds x="486" y="347" width="77" height="32">
- </bounds>
+ <bounds x="486" y="347" width="77" height="32"/>
</element>
<element name="lamp128" ref="lamp_128_1" state="0">
- <bounds x="488" y="349" width="73" height="28">
- </bounds>
+ <bounds x="488" y="349" width="73" height="28"/>
</element>
<element name="lamp129" ref="lamp_129_1_border" state="0">
- <bounds x="486" y="318" width="77" height="32">
- </bounds>
+ <bounds x="486" y="318" width="77" height="32"/>
</element>
<element name="lamp129" ref="lamp_129_1" state="0">
- <bounds x="488" y="320" width="73" height="28">
- </bounds>
+ <bounds x="488" y="320" width="73" height="28"/>
</element>
<element name="lamp139" ref="lamp_139_1_border" state="0">
- <bounds x="486" y="41" width="77" height="32">
- </bounds>
+ <bounds x="486" y="41" width="77" height="32"/>
</element>
<element name="lamp139" ref="lamp_139_1" state="0">
- <bounds x="488" y="43" width="73" height="28">
- </bounds>
+ <bounds x="488" y="43" width="73" height="28"/>
</element>
<element name="lamp138" ref="lamp_138_1_border" state="0">
- <bounds x="486" y="70" width="77" height="32">
- </bounds>
+ <bounds x="486" y="70" width="77" height="32"/>
</element>
<element name="lamp138" ref="lamp_138_1" state="0">
- <bounds x="488" y="72" width="73" height="28">
- </bounds>
+ <bounds x="488" y="72" width="73" height="28"/>
</element>
<element name="lamp137" ref="lamp_137_1_border" state="0">
- <bounds x="486" y="99" width="77" height="32">
- </bounds>
+ <bounds x="486" y="99" width="77" height="32"/>
</element>
<element name="lamp137" ref="lamp_137_1" state="0">
- <bounds x="488" y="101" width="73" height="28">
- </bounds>
+ <bounds x="488" y="101" width="73" height="28"/>
</element>
<element name="lamp136" ref="lamp_136_1_border" state="0">
- <bounds x="486" y="128" width="77" height="32">
- </bounds>
+ <bounds x="486" y="128" width="77" height="32"/>
</element>
<element name="lamp136" ref="lamp_136_1" state="0">
- <bounds x="488" y="130" width="73" height="28">
- </bounds>
+ <bounds x="488" y="130" width="73" height="28"/>
</element>
<element name="lamp135" ref="lamp_135_1_border" state="0">
- <bounds x="486" y="157" width="77" height="32">
- </bounds>
+ <bounds x="486" y="157" width="77" height="32"/>
</element>
<element name="lamp135" ref="lamp_135_1" state="0">
- <bounds x="488" y="159" width="73" height="28">
- </bounds>
+ <bounds x="488" y="159" width="73" height="28"/>
</element>
<element name="lamp134" ref="lamp_134_1_border" state="0">
- <bounds x="486" y="186" width="77" height="32">
- </bounds>
+ <bounds x="486" y="186" width="77" height="32"/>
</element>
<element name="lamp134" ref="lamp_134_1" state="0">
- <bounds x="488" y="188" width="73" height="28">
- </bounds>
+ <bounds x="488" y="188" width="73" height="28"/>
</element>
<element name="lamp133" ref="lamp_133_1_border" state="0">
- <bounds x="486" y="215" width="77" height="32">
- </bounds>
+ <bounds x="486" y="215" width="77" height="32"/>
</element>
<element name="lamp133" ref="lamp_133_1" state="0">
- <bounds x="488" y="217" width="73" height="28">
- </bounds>
+ <bounds x="488" y="217" width="73" height="28"/>
</element>
<element name="lamp132" ref="lamp_132_1_border" state="0">
- <bounds x="486" y="244" width="77" height="32">
- </bounds>
+ <bounds x="486" y="244" width="77" height="32"/>
</element>
<element name="lamp132" ref="lamp_132_1" state="0">
- <bounds x="488" y="246" width="73" height="28">
- </bounds>
+ <bounds x="488" y="246" width="73" height="28"/>
</element>
<element name="lamp131" ref="lamp_131_1_border" state="0">
- <bounds x="486" y="273" width="77" height="32">
- </bounds>
+ <bounds x="486" y="273" width="77" height="32"/>
</element>
<element name="lamp131" ref="lamp_131_1" state="0">
- <bounds x="488" y="275" width="73" height="28">
- </bounds>
+ <bounds x="488" y="275" width="73" height="28"/>
</element>
<element name="lamp130" ref="lamp_130_1_border" state="0">
- <bounds x="486" y="302" width="77" height="17">
- </bounds>
+ <bounds x="486" y="302" width="77" height="17"/>
</element>
<element name="lamp130" ref="lamp_130_1" state="0">
- <bounds x="488" y="304" width="73" height="13">
- </bounds>
+ <bounds x="488" y="304" width="73" height="13"/>
</element>
<element name="lamp141" ref="lamp_141_1_border" state="0">
- <bounds x="562" y="217" width="27" height="27">
- </bounds>
+ <bounds x="562" y="217" width="27" height="27"/>
</element>
<element name="lamp141" ref="lamp_141_1" state="0">
- <bounds x="564" y="219" width="23" height="23">
- </bounds>
+ <bounds x="564" y="219" width="23" height="23"/>
</element>
<element name="lamp125" ref="lamp_125_1_border" state="0">
- <bounds x="562" y="160" width="27" height="27">
- </bounds>
+ <bounds x="562" y="160" width="27" height="27"/>
</element>
<element name="lamp125" ref="lamp_125_1" state="0">
- <bounds x="564" y="162" width="23" height="23">
- </bounds>
+ <bounds x="564" y="162" width="23" height="23"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="562" y="102" width="27" height="27">
- </bounds>
+ <bounds x="562" y="102" width="27" height="27"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="564" y="104" width="23" height="23">
- </bounds>
+ <bounds x="564" y="104" width="23" height="23"/>
</element>
<element name="lamp171" ref="lamp_171_1_border" state="0">
- <bounds x="690" y="41" width="77" height="32">
- </bounds>
+ <bounds x="690" y="41" width="77" height="32"/>
</element>
<element name="lamp171" ref="lamp_171_1" state="0">
- <bounds x="692" y="43" width="73" height="28">
- </bounds>
+ <bounds x="692" y="43" width="73" height="28"/>
</element>
<element name="lamp170" ref="lamp_170_1_border" state="0">
- <bounds x="690" y="70" width="77" height="32">
- </bounds>
+ <bounds x="690" y="70" width="77" height="32"/>
</element>
<element name="lamp170" ref="lamp_170_1" state="0">
- <bounds x="692" y="72" width="73" height="28">
- </bounds>
+ <bounds x="692" y="72" width="73" height="28"/>
</element>
<element name="lamp169" ref="lamp_169_1_border" state="0">
- <bounds x="690" y="99" width="77" height="32">
- </bounds>
+ <bounds x="690" y="99" width="77" height="32"/>
</element>
<element name="lamp169" ref="lamp_169_1" state="0">
- <bounds x="692" y="101" width="73" height="28">
- </bounds>
+ <bounds x="692" y="101" width="73" height="28"/>
</element>
<element name="lamp168" ref="lamp_168_1_border" state="0">
- <bounds x="690" y="128" width="77" height="32">
- </bounds>
+ <bounds x="690" y="128" width="77" height="32"/>
</element>
<element name="lamp168" ref="lamp_168_1" state="0">
- <bounds x="692" y="130" width="73" height="28">
- </bounds>
+ <bounds x="692" y="130" width="73" height="28"/>
</element>
<element name="lamp167" ref="lamp_167_1_border" state="0">
- <bounds x="690" y="157" width="77" height="32">
- </bounds>
+ <bounds x="690" y="157" width="77" height="32"/>
</element>
<element name="lamp167" ref="lamp_167_1" state="0">
- <bounds x="692" y="159" width="73" height="28">
- </bounds>
+ <bounds x="692" y="159" width="73" height="28"/>
</element>
<element name="lamp166" ref="lamp_166_1_border" state="0">
- <bounds x="690" y="186" width="77" height="32">
- </bounds>
+ <bounds x="690" y="186" width="77" height="32"/>
</element>
<element name="lamp166" ref="lamp_166_1" state="0">
- <bounds x="692" y="188" width="73" height="28">
- </bounds>
+ <bounds x="692" y="188" width="73" height="28"/>
</element>
<element name="lamp165" ref="lamp_165_1_border" state="0">
- <bounds x="690" y="215" width="77" height="32">
- </bounds>
+ <bounds x="690" y="215" width="77" height="32"/>
</element>
<element name="lamp165" ref="lamp_165_1" state="0">
- <bounds x="692" y="217" width="73" height="28">
- </bounds>
+ <bounds x="692" y="217" width="73" height="28"/>
</element>
<element name="lamp164" ref="lamp_164_1_border" state="0">
- <bounds x="690" y="244" width="77" height="32">
- </bounds>
+ <bounds x="690" y="244" width="77" height="32"/>
</element>
<element name="lamp164" ref="lamp_164_1" state="0">
- <bounds x="692" y="246" width="73" height="28">
- </bounds>
+ <bounds x="692" y="246" width="73" height="28"/>
</element>
<element name="lamp163" ref="lamp_163_1_border" state="0">
- <bounds x="690" y="273" width="77" height="32">
- </bounds>
+ <bounds x="690" y="273" width="77" height="32"/>
</element>
<element name="lamp163" ref="lamp_163_1" state="0">
- <bounds x="692" y="275" width="73" height="28">
- </bounds>
+ <bounds x="692" y="275" width="73" height="28"/>
</element>
<element name="lamp162" ref="lamp_162_1_border" state="0">
- <bounds x="690" y="302" width="77" height="17">
- </bounds>
+ <bounds x="690" y="302" width="77" height="17"/>
</element>
<element name="lamp162" ref="lamp_162_1" state="0">
- <bounds x="692" y="304" width="73" height="13">
- </bounds>
+ <bounds x="692" y="304" width="73" height="13"/>
</element>
<element name="lamp161" ref="lamp_161_1_border" state="0">
- <bounds x="690" y="318" width="77" height="32">
- </bounds>
+ <bounds x="690" y="318" width="77" height="32"/>
</element>
<element name="lamp161" ref="lamp_161_1" state="0">
- <bounds x="692" y="320" width="73" height="28">
- </bounds>
+ <bounds x="692" y="320" width="73" height="28"/>
</element>
<element name="lamp160" ref="lamp_160_1_border" state="0">
- <bounds x="690" y="347" width="77" height="32">
- </bounds>
+ <bounds x="690" y="347" width="77" height="32"/>
</element>
<element name="lamp160" ref="lamp_160_1" state="0">
- <bounds x="692" y="349" width="73" height="28">
- </bounds>
+ <bounds x="692" y="349" width="73" height="28"/>
</element>
<element name="lamp92" ref="lamp_92_1_border" state="0">
- <bounds x="181" y="102" width="27" height="27">
- </bounds>
+ <bounds x="181" y="102" width="27" height="27"/>
</element>
<element name="lamp92" ref="lamp_92_1" state="0">
- <bounds x="183" y="104" width="23" height="23">
- </bounds>
+ <bounds x="183" y="104" width="23" height="23"/>
</element>
<element name="lamp93" ref="lamp_93_1_border" state="0">
- <bounds x="181" y="160" width="27" height="27">
- </bounds>
+ <bounds x="181" y="160" width="27" height="27"/>
</element>
<element name="lamp93" ref="lamp_93_1" state="0">
- <bounds x="183" y="162" width="23" height="23">
- </bounds>
+ <bounds x="183" y="162" width="23" height="23"/>
</element>
<element name="lamp173" ref="lamp_173_1_border" state="0">
- <bounds x="181" y="217" width="27" height="27">
- </bounds>
+ <bounds x="181" y="217" width="27" height="27"/>
</element>
<element name="lamp173" ref="lamp_173_1" state="0">
- <bounds x="183" y="219" width="23" height="23">
- </bounds>
+ <bounds x="183" y="219" width="23" height="23"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="207" y="348" width="77" height="32">
- </bounds>
+ <bounds x="207" y="348" width="77" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="209" y="350" width="73" height="28">
- </bounds>
+ <bounds x="209" y="350" width="73" height="28"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="207" y="319" width="77" height="32">
- </bounds>
+ <bounds x="207" y="319" width="77" height="32"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="209" y="321" width="73" height="28">
- </bounds>
+ <bounds x="209" y="321" width="73" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="207" y="302" width="77" height="17">
- </bounds>
+ <bounds x="207" y="302" width="77" height="17"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="209" y="304" width="73" height="13">
- </bounds>
+ <bounds x="209" y="304" width="73" height="13"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="207" y="273" width="77" height="32">
- </bounds>
+ <bounds x="207" y="273" width="77" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="209" y="275" width="73" height="28">
- </bounds>
+ <bounds x="209" y="275" width="73" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="207" y="244" width="77" height="32">
- </bounds>
+ <bounds x="207" y="244" width="77" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="209" y="246" width="73" height="28">
- </bounds>
+ <bounds x="209" y="246" width="73" height="28"/>
</element>
<element name="lamp85" ref="lamp_85_1_border" state="0">
- <bounds x="207" y="215" width="77" height="32">
- </bounds>
+ <bounds x="207" y="215" width="77" height="32"/>
</element>
<element name="lamp85" ref="lamp_85_1" state="0">
- <bounds x="209" y="217" width="73" height="28">
- </bounds>
+ <bounds x="209" y="217" width="73" height="28"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="207" y="186" width="77" height="32">
- </bounds>
+ <bounds x="207" y="186" width="77" height="32"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="209" y="188" width="73" height="28">
- </bounds>
+ <bounds x="209" y="188" width="73" height="28"/>
</element>
<element name="lamp87" ref="lamp_87_1_border" state="0">
- <bounds x="207" y="157" width="77" height="32">
- </bounds>
+ <bounds x="207" y="157" width="77" height="32"/>
</element>
<element name="lamp87" ref="lamp_87_1" state="0">
- <bounds x="209" y="159" width="73" height="28">
- </bounds>
+ <bounds x="209" y="159" width="73" height="28"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="207" y="128" width="77" height="32">
- </bounds>
+ <bounds x="207" y="128" width="77" height="32"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="209" y="130" width="73" height="28">
- </bounds>
+ <bounds x="209" y="130" width="73" height="28"/>
</element>
<element name="lamp89" ref="lamp_89_1_border" state="0">
- <bounds x="207" y="99" width="77" height="32">
- </bounds>
+ <bounds x="207" y="99" width="77" height="32"/>
</element>
<element name="lamp89" ref="lamp_89_1" state="0">
- <bounds x="209" y="101" width="73" height="28">
- </bounds>
+ <bounds x="209" y="101" width="73" height="28"/>
</element>
<element name="lamp90" ref="lamp_90_1_border" state="0">
- <bounds x="207" y="70" width="77" height="32">
- </bounds>
+ <bounds x="207" y="70" width="77" height="32"/>
</element>
<element name="lamp90" ref="lamp_90_1" state="0">
- <bounds x="209" y="72" width="73" height="28">
- </bounds>
+ <bounds x="209" y="72" width="73" height="28"/>
</element>
<element name="lamp91" ref="lamp_91_1_border" state="0">
- <bounds x="207" y="41" width="77" height="32">
- </bounds>
+ <bounds x="207" y="41" width="77" height="32"/>
</element>
<element name="lamp91" ref="lamp_91_1" state="0">
- <bounds x="209" y="43" width="73" height="28">
- </bounds>
+ <bounds x="209" y="43" width="73" height="28"/>
</element>
<element name="lamp75" ref="lamp_75_1_border" state="0">
- <bounds x="105" y="41" width="77" height="32">
- </bounds>
+ <bounds x="105" y="41" width="77" height="32"/>
</element>
<element name="lamp75" ref="lamp_75_1" state="0">
- <bounds x="107" y="43" width="73" height="28">
- </bounds>
+ <bounds x="107" y="43" width="73" height="28"/>
</element>
<element name="lamp74" ref="lamp_74_1_border" state="0">
- <bounds x="105" y="70" width="77" height="32">
- </bounds>
+ <bounds x="105" y="70" width="77" height="32"/>
</element>
<element name="lamp74" ref="lamp_74_1" state="0">
- <bounds x="107" y="72" width="73" height="28">
- </bounds>
+ <bounds x="107" y="72" width="73" height="28"/>
</element>
<element name="lamp73" ref="lamp_73_1_border" state="0">
- <bounds x="105" y="99" width="77" height="32">
- </bounds>
+ <bounds x="105" y="99" width="77" height="32"/>
</element>
<element name="lamp73" ref="lamp_73_1" state="0">
- <bounds x="107" y="101" width="73" height="28">
- </bounds>
+ <bounds x="107" y="101" width="73" height="28"/>
</element>
<element name="lamp72" ref="lamp_72_1_border" state="0">
- <bounds x="105" y="128" width="77" height="32">
- </bounds>
+ <bounds x="105" y="128" width="77" height="32"/>
</element>
<element name="lamp72" ref="lamp_72_1" state="0">
- <bounds x="107" y="130" width="73" height="28">
- </bounds>
+ <bounds x="107" y="130" width="73" height="28"/>
</element>
<element name="lamp71" ref="lamp_71_1_border" state="0">
- <bounds x="105" y="157" width="77" height="32">
- </bounds>
+ <bounds x="105" y="157" width="77" height="32"/>
</element>
<element name="lamp71" ref="lamp_71_1" state="0">
- <bounds x="107" y="159" width="73" height="28">
- </bounds>
+ <bounds x="107" y="159" width="73" height="28"/>
</element>
<element name="lamp70" ref="lamp_70_1_border" state="0">
- <bounds x="105" y="186" width="77" height="32">
- </bounds>
+ <bounds x="105" y="186" width="77" height="32"/>
</element>
<element name="lamp70" ref="lamp_70_1" state="0">
- <bounds x="107" y="188" width="73" height="28">
- </bounds>
+ <bounds x="107" y="188" width="73" height="28"/>
</element>
<element name="lamp69" ref="lamp_69_1_border" state="0">
- <bounds x="105" y="215" width="77" height="32">
- </bounds>
+ <bounds x="105" y="215" width="77" height="32"/>
</element>
<element name="lamp69" ref="lamp_69_1" state="0">
- <bounds x="107" y="217" width="73" height="28">
- </bounds>
+ <bounds x="107" y="217" width="73" height="28"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="105" y="244" width="77" height="32">
- </bounds>
+ <bounds x="105" y="244" width="77" height="32"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="107" y="246" width="73" height="28">
- </bounds>
+ <bounds x="107" y="246" width="73" height="28"/>
</element>
<element name="lamp67" ref="lamp_67_1_border" state="0">
- <bounds x="105" y="273" width="77" height="32">
- </bounds>
+ <bounds x="105" y="273" width="77" height="32"/>
</element>
<element name="lamp67" ref="lamp_67_1" state="0">
- <bounds x="107" y="275" width="73" height="28">
- </bounds>
+ <bounds x="107" y="275" width="73" height="28"/>
</element>
<element name="lamp66" ref="lamp_66_1_border" state="0">
- <bounds x="105" y="302" width="77" height="17">
- </bounds>
+ <bounds x="105" y="302" width="77" height="17"/>
</element>
<element name="lamp66" ref="lamp_66_1" state="0">
- <bounds x="107" y="304" width="73" height="13">
- </bounds>
+ <bounds x="107" y="304" width="73" height="13"/>
</element>
<element name="lamp65" ref="lamp_65_1_border" state="0">
- <bounds x="105" y="319" width="77" height="32">
- </bounds>
+ <bounds x="105" y="319" width="77" height="32"/>
</element>
<element name="lamp65" ref="lamp_65_1" state="0">
- <bounds x="107" y="321" width="73" height="28">
- </bounds>
+ <bounds x="107" y="321" width="73" height="28"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="105" y="348" width="77" height="32">
- </bounds>
+ <bounds x="105" y="348" width="77" height="32"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="107" y="350" width="73" height="28">
- </bounds>
+ <bounds x="107" y="350" width="73" height="28"/>
</element>
<element name="lamp48" ref="lamp_48_1_border" state="0">
- <bounds x="3" y="348" width="77" height="32">
- </bounds>
+ <bounds x="3" y="348" width="77" height="32"/>
</element>
<element name="lamp48" ref="lamp_48_1" state="0">
- <bounds x="5" y="350" width="73" height="28">
- </bounds>
+ <bounds x="5" y="350" width="73" height="28"/>
</element>
<element name="lamp49" ref="lamp_49_1_border" state="0">
- <bounds x="3" y="319" width="77" height="32">
- </bounds>
+ <bounds x="3" y="319" width="77" height="32"/>
</element>
<element name="lamp49" ref="lamp_49_1" state="0">
- <bounds x="5" y="321" width="73" height="28">
- </bounds>
+ <bounds x="5" y="321" width="73" height="28"/>
</element>
<element name="lamp59" ref="lamp_59_1_border" state="0">
- <bounds x="3" y="41" width="77" height="32">
- </bounds>
+ <bounds x="3" y="41" width="77" height="32"/>
</element>
<element name="lamp59" ref="lamp_59_1" state="0">
- <bounds x="5" y="43" width="73" height="28">
- </bounds>
+ <bounds x="5" y="43" width="73" height="28"/>
</element>
<element name="lamp58" ref="lamp_58_1_border" state="0">
- <bounds x="3" y="70" width="77" height="32">
- </bounds>
+ <bounds x="3" y="70" width="77" height="32"/>
</element>
<element name="lamp58" ref="lamp_58_1" state="0">
- <bounds x="5" y="72" width="73" height="28">
- </bounds>
+ <bounds x="5" y="72" width="73" height="28"/>
</element>
<element name="lamp57" ref="lamp_57_1_border" state="0">
- <bounds x="3" y="99" width="77" height="32">
- </bounds>
+ <bounds x="3" y="99" width="77" height="32"/>
</element>
<element name="lamp57" ref="lamp_57_1" state="0">
- <bounds x="5" y="101" width="73" height="28">
- </bounds>
+ <bounds x="5" y="101" width="73" height="28"/>
</element>
<element name="lamp56" ref="lamp_56_1_border" state="0">
- <bounds x="3" y="128" width="77" height="32">
- </bounds>
+ <bounds x="3" y="128" width="77" height="32"/>
</element>
<element name="lamp56" ref="lamp_56_1" state="0">
- <bounds x="5" y="130" width="73" height="28">
- </bounds>
+ <bounds x="5" y="130" width="73" height="28"/>
</element>
<element name="lamp55" ref="lamp_55_1_border" state="0">
- <bounds x="3" y="157" width="77" height="32">
- </bounds>
+ <bounds x="3" y="157" width="77" height="32"/>
</element>
<element name="lamp55" ref="lamp_55_1" state="0">
- <bounds x="5" y="159" width="73" height="28">
- </bounds>
+ <bounds x="5" y="159" width="73" height="28"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="3" y="186" width="77" height="32">
- </bounds>
+ <bounds x="3" y="186" width="77" height="32"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="5" y="188" width="73" height="28">
- </bounds>
+ <bounds x="5" y="188" width="73" height="28"/>
</element>
<element name="lamp53" ref="lamp_53_1_border" state="0">
- <bounds x="3" y="215" width="77" height="32">
- </bounds>
+ <bounds x="3" y="215" width="77" height="32"/>
</element>
<element name="lamp53" ref="lamp_53_1" state="0">
- <bounds x="5" y="217" width="73" height="28">
- </bounds>
+ <bounds x="5" y="217" width="73" height="28"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="3" y="244" width="77" height="32">
- </bounds>
+ <bounds x="3" y="244" width="77" height="32"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="5" y="246" width="73" height="28">
- </bounds>
+ <bounds x="5" y="246" width="73" height="28"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="3" y="273" width="77" height="32">
- </bounds>
+ <bounds x="3" y="273" width="77" height="32"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="5" y="275" width="73" height="28">
- </bounds>
+ <bounds x="5" y="275" width="73" height="28"/>
</element>
<element name="lamp50" ref="lamp_50_1_border" state="0">
- <bounds x="3" y="302" width="77" height="17">
- </bounds>
+ <bounds x="3" y="302" width="77" height="17"/>
</element>
<element name="lamp50" ref="lamp_50_1" state="0">
- <bounds x="5" y="304" width="73" height="13">
- </bounds>
+ <bounds x="5" y="304" width="73" height="13"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="128" y="16" width="42" height="27">
- </bounds>
+ <bounds x="128" y="16" width="42" height="27"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="130" y="18" width="38" height="23">
- </bounds>
+ <bounds x="130" y="18" width="38" height="23"/>
</element>
<element name="lamp61" ref="lamp_61_1_border" state="0">
- <bounds x="128" y="1" width="82" height="18">
- </bounds>
+ <bounds x="128" y="1" width="82" height="18"/>
</element>
<element name="lamp61" ref="lamp_61_1" state="0">
- <bounds x="130" y="3" width="78" height="14">
- </bounds>
+ <bounds x="130" y="3" width="78" height="14"/>
</element>
<element name="lamp76" ref="lamp_76_1_border" state="0">
- <bounds x="167" y="16" width="43" height="27">
- </bounds>
+ <bounds x="167" y="16" width="43" height="27"/>
</element>
<element name="lamp76" ref="lamp_76_1" state="0">
- <bounds x="169" y="18" width="39" height="23">
- </bounds>
+ <bounds x="169" y="18" width="39" height="23"/>
</element>
<element name="lamp224" ref="colour_button_128_border" state="0" inputtag="J9_0" inputmask="0x40">
- <bounds x="40" y="605" width="75" height="27">
- </bounds>
+ <bounds x="40" y="605" width="75" height="27"/>
</element>
<element name="lamp224" ref="colour_button_128" state="0" inputtag="J9_0" inputmask="0x40">
- <bounds x="42" y="607" width="71" height="23">
- </bounds>
+ <bounds x="42" y="607" width="71" height="23"/>
</element>
<element name="lamp211" ref="colour_button_129_border" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="116" y="605" width="75" height="27">
- </bounds>
+ <bounds x="116" y="605" width="75" height="27"/>
</element>
<element name="lamp211" ref="colour_button_129" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="118" y="607" width="71" height="23">
- </bounds>
+ <bounds x="118" y="607" width="71" height="23"/>
</element>
<element name="lamp192" ref="colour_button_130_border" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="683" y="605" width="75" height="27">
- </bounds>
+ <bounds x="683" y="605" width="75" height="27"/>
</element>
<element name="lamp192" ref="colour_button_130" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="685" y="607" width="71" height="23">
- </bounds>
+ <bounds x="685" y="607" width="71" height="23"/>
</element>
<element name="lamp193" ref="colour_button_131_border" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="579" y="605" width="75" height="27">
- </bounds>
+ <bounds x="579" y="605" width="75" height="27"/>
</element>
<element name="lamp193" ref="colour_button_131" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="581" y="607" width="71" height="23">
- </bounds>
+ <bounds x="581" y="607" width="71" height="23"/>
</element>
<element name="lamp194" ref="colour_button_132_border" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="451" y="605" width="75" height="27">
- </bounds>
+ <bounds x="451" y="605" width="75" height="27"/>
</element>
<element name="lamp194" ref="colour_button_132" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="453" y="607" width="71" height="23">
- </bounds>
+ <bounds x="453" y="607" width="71" height="23"/>
</element>
<element name="lamp195" ref="colour_button_133_border" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="299" y="605" width="75" height="27">
- </bounds>
+ <bounds x="299" y="605" width="75" height="27"/>
</element>
<element name="lamp195" ref="colour_button_133" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="301" y="607" width="71" height="23">
- </bounds>
+ <bounds x="301" y="607" width="71" height="23"/>
</element>
<element name="lamp209" ref="colour_button_134_border" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="209" y="605" width="75" height="27">
- </bounds>
+ <bounds x="209" y="605" width="75" height="27"/>
</element>
<element name="lamp209" ref="colour_button_134" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="211" y="607" width="71" height="23">
- </bounds>
+ <bounds x="211" y="607" width="71" height="23"/>
</element>
<element name="lamp14" ref="colour_button_135_border" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="691" y="8" width="75" height="27">
- </bounds>
+ <bounds x="691" y="8" width="75" height="27"/>
</element>
<element name="lamp14" ref="colour_button_135" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="693" y="10" width="71" height="23">
- </bounds>
+ <bounds x="693" y="10" width="71" height="23"/>
</element>
<element name="lamp227" ref="colour_button_136_border" state="0" inputtag="J9_2" inputmask="0x40">
- <bounds x="473" y="512" width="75" height="27">
- </bounds>
+ <bounds x="473" y="512" width="75" height="27"/>
</element>
<element name="lamp227" ref="colour_button_136" state="0" inputtag="J9_2" inputmask="0x40">
- <bounds x="475" y="514" width="71" height="23">
- </bounds>
+ <bounds x="475" y="514" width="71" height="23"/>
</element>
<element name="lamp226" ref="colour_button_137_border" state="0" inputtag="J9_2" inputmask="0x02">
- <bounds x="473" y="481" width="75" height="27">
- </bounds>
+ <bounds x="473" y="481" width="75" height="27"/>
</element>
<element name="lamp226" ref="colour_button_137" state="0" inputtag="J9_2" inputmask="0x02">
- <bounds x="475" y="483" width="71" height="23">
- </bounds>
+ <bounds x="475" y="483" width="71" height="23"/>
</element>
<element name="lamp225" ref="colour_button_138_border" state="0" inputtag="J9_2" inputmask="0x01">
- <bounds x="473" y="451" width="75" height="27">
- </bounds>
+ <bounds x="473" y="451" width="75" height="27"/>
</element>
<element name="lamp225" ref="colour_button_138" state="0" inputtag="J9_2" inputmask="0x01">
- <bounds x="475" y="453" width="71" height="23">
- </bounds>
+ <bounds x="475" y="453" width="71" height="23"/>
</element>
<element name="digit1" ref="led_digit" state="0">
- <bounds x="724" y="564" width="24" height="32">
- </bounds>
+ <bounds x="724" y="564" width="24" height="32"/>
</element>
<element name="digit0" ref="led_digit" state="0">
- <bounds x="700" y="564" width="24" height="32">
- </bounds>
+ <bounds x="700" y="564" width="24" height="32"/>
</element>
<element name="digit2" ref="led_digit" state="0">
- <bounds x="326" y="2" width="30" height="40">
- </bounds>
+ <bounds x="326" y="2" width="30" height="40"/>
</element>
<element name="digit3" ref="led_digit" state="0">
- <bounds x="356" y="2" width="30" height="40">
- </bounds>
+ <bounds x="356" y="2" width="30" height="40"/>
</element>
<element name="digit4" ref="led_digit" state="0">
- <bounds x="386" y="2" width="30" height="40">
- </bounds>
+ <bounds x="386" y="2" width="30" height="40"/>
</element>
<element name="digit5" ref="led_digit" state="0">
- <bounds x="415" y="2" width="30" height="40">
- </bounds>
+ <bounds x="415" y="2" width="30" height="40"/>
</element>
<element name="label127" ref="label_127">
- <bounds x="699" y="541" width="44" height="16">
- </bounds>
+ <bounds x="699" y="541" width="44" height="16"/>
</element>
</view>
-</mamelayout> \ No newline at end of file
+</mamelayout>
diff --git a/src/mame/layout/j6snakes.lay b/src/mame/layout/j6snakes.lay
index 2a945797e01..8ac0a3f0edb 100644
--- a/src/mame/layout/j6snakes.lay
+++ b/src/mame/layout/j6snakes.lay
@@ -3829,114 +3829,88 @@
</element>
<element name="lamp_214_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_214_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_215_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_215_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_217_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_217_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_228_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_228_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_9">
<text string="Nudges">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
@@ -3948,272 +3922,205 @@
<bounds x="265" y="415" width="80" height="190"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="265.0000" y="415.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="265.0000" y="415.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="268.3333" y="417.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="268.3333" y="417.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="271.6667" y="420.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="271.6667" y="420.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="275.0000" y="422.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="275.0000" y="422.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="278.3333" y="425.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="278.3333" y="425.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="281.6667" y="428.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="281.6667" y="428.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="265.0000" y="478.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="265.0000" y="478.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="268.3333" y="480.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="268.3333" y="480.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="271.6667" y="483.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="271.6667" y="483.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="275.0000" y="486.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="275.0000" y="486.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="278.3333" y="488.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="278.3333" y="488.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="281.6667" y="491.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="281.6667" y="491.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="265.0000" y="541.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="265.0000" y="541.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="268.3333" y="544.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="268.3333" y="544.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="271.6667" y="546.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="271.6667" y="546.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="275.0000" y="549.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="275.0000" y="549.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="278.3333" y="552.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="278.3333" y="552.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="281.6667" y="554.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="281.6667" y="554.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="265" y="415" width="80" height="190">
- </bounds>
+ <bounds x="265" y="415" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="347" y="415" width="80" height="190">
- </bounds>
+ <bounds x="347" y="415" width="80" height="190"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="347.0000" y="415.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="347.0000" y="415.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="350.3333" y="417.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="350.3333" y="417.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="353.6667" y="420.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="353.6667" y="420.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="357.0000" y="422.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="357.0000" y="422.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="360.3333" y="425.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="360.3333" y="425.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="363.6667" y="428.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="363.6667" y="428.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="347.0000" y="478.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="347.0000" y="478.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="350.3333" y="480.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="350.3333" y="480.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="353.6667" y="483.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="353.6667" y="483.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="357.0000" y="486.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="357.0000" y="486.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="360.3333" y="488.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="360.3333" y="488.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="363.6667" y="491.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="363.6667" y="491.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="347.0000" y="541.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="347.0000" y="541.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="350.3333" y="544.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="350.3333" y="544.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="353.6667" y="546.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="353.6667" y="546.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="357.0000" y="549.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="357.0000" y="549.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="360.3333" y="552.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="360.3333" y="552.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="363.6667" y="554.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="363.6667" y="554.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="347" y="415" width="80" height="190">
- </bounds>
+ <bounds x="347" y="415" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="429" y="415" width="80" height="190">
- </bounds>
+ <bounds x="429" y="415" width="80" height="190"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="429.0000" y="415.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="429.0000" y="415.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="432.3333" y="417.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="432.3333" y="417.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="435.6667" y="420.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="435.6667" y="420.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="439.0000" y="422.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="439.0000" y="422.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="442.3333" y="425.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="442.3333" y="425.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="445.6667" y="428.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="445.6667" y="428.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="429.0000" y="478.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="429.0000" y="478.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="432.3333" y="480.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="432.3333" y="480.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="435.6667" y="483.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="435.6667" y="483.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="439.0000" y="486.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="439.0000" y="486.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="442.3333" y="488.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="442.3333" y="488.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="445.6667" y="491.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="445.6667" y="491.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="429.0000" y="541.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="429.0000" y="541.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="432.3333" y="544.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="432.3333" y="544.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="435.6667" y="546.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="435.6667" y="546.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="439.0000" y="549.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="439.0000" y="549.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="442.3333" y="552.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="442.3333" y="552.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="445.6667" y="554.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="445.6667" y="554.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="429" y="415" width="80" height="190">
- </bounds>
+ <bounds x="429" y="415" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="511" y="493" width="70" height="40">
- </bounds>
+ <bounds x="511" y="493" width="70" height="40"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="511.0000" y="487.6667" width="70.0000" height="46.6667">
- </bounds>
+ <bounds x="511.0000" y="487.6667" width="70.0000" height="46.6667"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="513.9167" y="489.6111" width="64.1667" height="42.7778">
- </bounds>
+ <bounds x="513.9167" y="489.6111" width="64.1667" height="42.7778"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="516.8333" y="491.5555" width="58.3333" height="38.8889">
- </bounds>
+ <bounds x="516.8333" y="491.5555" width="58.3333" height="38.8889"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="519.7500" y="493.5000" width="52.5000" height="35.0000">
- </bounds>
+ <bounds x="519.7500" y="493.5000" width="52.5000" height="35.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="522.6667" y="495.4444" width="46.6667" height="31.1111">
- </bounds>
+ <bounds x="522.6667" y="495.4444" width="46.6667" height="31.1111"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="525.5833" y="497.3889" width="40.8333" height="27.2222">
- </bounds>
+ <bounds x="525.5833" y="497.3889" width="40.8333" height="27.2222"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="511" y="493" width="70" height="46">
- </bounds>
+ <bounds x="511" y="493" width="70" height="46"/>
</element>
<element name="lamp196" ref="lamp_196_1_border" state="0">
<bounds x="1" y="617" width="100" height="24"/>
@@ -5337,48 +5244,37 @@
<bounds x="518" y="420" width="49" height="22"/>
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="164" y="557" width="46" height="26">
- </bounds>
+ <bounds x="164" y="557" width="46" height="26"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="166" y="559" width="42" height="22">
- </bounds>
+ <bounds x="166" y="559" width="42" height="22"/>
</element>
<element name="lamp214" ref="lamp_214_1_border" state="0">
- <bounds x="150" y="510" width="37" height="47">
- </bounds>
+ <bounds x="150" y="510" width="37" height="47"/>
</element>
<element name="lamp214" ref="lamp_214_1" state="0">
- <bounds x="152" y="512" width="33" height="43">
- </bounds>
+ <bounds x="152" y="512" width="33" height="43"/>
</element>
<element name="lamp215" ref="lamp_215_1_border" state="0">
- <bounds x="187" y="510" width="37" height="47">
- </bounds>
+ <bounds x="187" y="510" width="37" height="47"/>
</element>
<element name="lamp215" ref="lamp_215_1" state="0">
- <bounds x="189" y="512" width="33" height="43">
- </bounds>
+ <bounds x="189" y="512" width="33" height="43"/>
</element>
<element name="lamp217" ref="lamp_217_1_border" state="0">
- <bounds x="150" y="463" width="37" height="47">
- </bounds>
+ <bounds x="150" y="463" width="37" height="47"/>
</element>
<element name="lamp217" ref="lamp_217_1" state="0">
- <bounds x="152" y="465" width="33" height="43">
- </bounds>
+ <bounds x="152" y="465" width="33" height="43"/>
</element>
<element name="lamp228" ref="lamp_228_1_border" state="0">
- <bounds x="187" y="463" width="37" height="47">
- </bounds>
+ <bounds x="187" y="463" width="37" height="47"/>
</element>
<element name="lamp228" ref="lamp_228_1" state="0">
- <bounds x="189" y="465" width="33" height="43">
- </bounds>
+ <bounds x="189" y="465" width="33" height="43"/>
</element>
<element name="label9" ref="label_9">
- <bounds x="167" y="442" width="37" height="13">
- </bounds>
+ <bounds x="167" y="442" width="37" height="13"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/j6sonic10.lay b/src/mame/layout/j6sonic10.lay
index 3d812240ead..20043c19964 100644
--- a/src/mame/layout/j6sonic10.lay
+++ b/src/mame/layout/j6sonic10.lay
@@ -8,3682 +8,2822 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_197_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_197_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_216_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_216_2" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_215_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_215_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_214_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_214_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_196_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_196_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_217_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_217_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_218_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_218_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_219_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_219_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_221_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_221_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_223_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_223_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_226_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_226_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_3_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_82_3" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Sonic The Hedgehog">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_54_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_4_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_82_4" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10 Repeater">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_79_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_79_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_38_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_38_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_70_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="Add">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Again">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_71_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_71_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_39_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_39_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_213_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_213_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Hi">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_212_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_212_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Lo">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_231_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_231_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_232_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_232_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_227_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_227_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_237_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_237_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Lose">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_228_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_228_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_44_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_44_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Game Over">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_80_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_81_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_81_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_93_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_93_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_89_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_89_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="40p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_90_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_90_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="STOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_92_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="STOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_91_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_91_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_94_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="STOP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_95_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_95_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="80p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_22_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_22_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Fast">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_24_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_24_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_23_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_23_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="Add">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Again">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_25_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_25_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_29_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_29_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="Add">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Again">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_28_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_28_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_30_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_30_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_27_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_27_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_26_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_26_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="Zoom">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_31_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_31_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_205_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_205_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="2 Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_206_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_206_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Zoom">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_207_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_207_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_239_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_239_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="Add">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Again">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_234_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_234_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_235_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_235_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_230_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_230_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_204_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_204_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_203_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_203_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_202_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_202_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_201_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_201_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_200_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_200_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_199_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_199_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_198_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_198_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_236_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_236_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Trail">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Held">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_130_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_130_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_132_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_132_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_129_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_129_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_133_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_133_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="9">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_8_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_8_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Light all numbers">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.40">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.40"/>
</text>
<text string="for Super Cash Repeater">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.45" width="0.90" height="0.40">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.45" width="0.90" height="0.40"/>
</text>
</element>
<element name="lamp_131_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_131_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_128_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_128_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="11">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_46_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_46_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Zoom">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_45_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_45_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Back 2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_50_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_50_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Reel Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_49_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Extra Life">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_48_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_48_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Sonic Boom">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_55_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_55_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Loop the">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Loop">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_58_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_58_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Quick">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Shot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_56_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_56_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_57_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_57_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_59_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_59_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_60_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_60_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spinner">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_61_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_61_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Zoom">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_62_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_62_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_63_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_63_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_64_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_65_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_65_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_66_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_67_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_67_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_68_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_68_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Strike it">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Rich">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_72_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_72_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_73_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_73_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_78_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_78_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Looper">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_74_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_74_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Sonic">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_75_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_75_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="Zoom">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_76_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_76_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_77_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_77_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="12">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_47_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_47_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Super Sonic">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_53_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Bonus Ring">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_52_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Lose">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_51_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_111_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_111_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_105_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_105_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_104_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_104_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_110_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_110_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_109_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_108_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_103_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_102_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_107_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_107_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_106_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_106_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_100_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_116_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_116_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_121_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_121_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="40p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_115_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_115_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="40p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_122_2_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_122_2" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_120_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_120_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_118_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_119_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_119_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_117_2_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_117_2" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_112_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_113_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_113_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_114_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_114_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_123_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_123_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_124_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_124_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_125_2_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_125_2" defstate="0">
<disk state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_126_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_126_2" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Loop">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="the">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="Loop">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="colour_button_144_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_144">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_145_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_145">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_146_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_146">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_147_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_147">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_148_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_148">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_150_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_150">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_150a_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_150a">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_151_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_151">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string=" START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Sonic(1),Single Bar,Grapes,Double Bar(2),Cherry,Melon,Grapes,Cherry,Bell,Triple Bar(1),Melon,Grapes,Cherry,JPM,Single Bar(3),Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Sonic,Double Bar,Grapes,Single Bar,Cherry(1),Melon,Grapes(1),Cherry(Bonus),Bell,Double Bar,Melon,Grapes(2),Cherry,JPM,Triple Bar,Cherry(4)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Sonic,Single Bar,Grapes,Double Bar,Cherry,Melon(1),Grapes,Cherry,Bell(2),Triple Bar,Melon(1),Grapes,Cherry,JPM(3),Single Bar,Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="0" stateoffset="-1365" numsymbolsvisible="1" symbollist="12,11,10,9,8,7,6,5,4,3,2,1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="vfd0" defstate="0x7ffff">
@@ -3861,1603 +3001,1210 @@
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_15">
<text string="Sonic">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_16">
<text string="Triple Bar">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_17">
<text string="Double Bar">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_18">
<text string="Single Bar">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_19">
<text string="JPM">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_20">
<text string="Bell">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_21">
<text string="3X">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_22">
<text string="Melon">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_23">
<text string="Grapes">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_24">
<text string="Mixed Bar">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_25">
<text string="Cherry">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_51">
<text string="Strike it Rich">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_69">
<text string="Bank">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="Credit">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_143">
<text string="Nudges">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="786" height="646">
- </bounds>
+ <bounds x="0" y="0" width="786" height="646"/>
</element>
<element ref="reel_background">
- <bounds x="191" y="411" width="80" height="190">
- </bounds>
+ <bounds x="191" y="411" width="80" height="190"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="191.0000" y="411.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="191.0000" y="411.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="194.3333" y="413.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="194.3333" y="413.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="197.6667" y="416.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="197.6667" y="416.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="201.0000" y="418.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="201.0000" y="418.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="204.3333" y="421.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="204.3333" y="421.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="207.6667" y="424.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="207.6667" y="424.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="191.0000" y="474.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="191.0000" y="474.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="194.3333" y="476.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="194.3333" y="476.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="197.6667" y="479.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="197.6667" y="479.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="201.0000" y="482.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="201.0000" y="482.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="204.3333" y="484.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="204.3333" y="484.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="207.6667" y="487.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="207.6667" y="487.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="191.0000" y="537.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="191.0000" y="537.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="194.3333" y="540.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="194.3333" y="540.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="197.6667" y="542.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="197.6667" y="542.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="201.0000" y="545.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="201.0000" y="545.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="204.3333" y="548.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="204.3333" y="548.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="207.6667" y="550.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="207.6667" y="550.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="191" y="411" width="80" height="190">
- </bounds>
+ <bounds x="191" y="411" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="273" y="411" width="80" height="190">
- </bounds>
+ <bounds x="273" y="411" width="80" height="190"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_0" state="0">
- <bounds x="273.0000" y="411.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="273.0000" y="411.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_1" state="0">
- <bounds x="276.3333" y="413.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="276.3333" y="413.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_2" state="0">
- <bounds x="279.6667" y="416.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="279.6667" y="416.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_3" state="0">
- <bounds x="283.0000" y="418.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="283.0000" y="418.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_4" state="0">
- <bounds x="286.3333" y="421.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="286.3333" y="421.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp5" ref="reel_lamp_layer_5" state="0">
- <bounds x="289.6667" y="424.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="289.6667" y="424.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_0" state="0">
- <bounds x="273.0000" y="474.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="273.0000" y="474.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_1" state="0">
- <bounds x="276.3333" y="476.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="276.3333" y="476.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_2" state="0">
- <bounds x="279.6667" y="479.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="279.6667" y="479.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_3" state="0">
- <bounds x="283.0000" y="482.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="283.0000" y="482.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_4" state="0">
- <bounds x="286.3333" y="484.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="286.3333" y="484.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp4" ref="reel_lamp_layer_5" state="0">
- <bounds x="289.6667" y="487.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="289.6667" y="487.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="273.0000" y="537.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="273.0000" y="537.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="276.3333" y="540.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="276.3333" y="540.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="279.6667" y="542.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="279.6667" y="542.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="283.0000" y="545.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="283.0000" y="545.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="286.3333" y="548.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="286.3333" y="548.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="289.6667" y="550.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="289.6667" y="550.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="273" y="411" width="80" height="190">
- </bounds>
+ <bounds x="273" y="411" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="355" y="411" width="80" height="190">
- </bounds>
+ <bounds x="355" y="411" width="80" height="190"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="355.0000" y="411.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="355.0000" y="411.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="358.3333" y="413.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="358.3333" y="413.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="361.6667" y="416.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="361.6667" y="416.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="365.0000" y="418.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="365.0000" y="418.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="368.3333" y="421.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="368.3333" y="421.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="371.6667" y="424.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="371.6667" y="424.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="355.0000" y="474.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="355.0000" y="474.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="358.3333" y="476.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="358.3333" y="476.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="361.6667" y="479.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="361.6667" y="479.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="365.0000" y="482.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="365.0000" y="482.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="368.3333" y="484.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="368.3333" y="484.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="371.6667" y="487.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="371.6667" y="487.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="355.0000" y="537.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="355.0000" y="537.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="358.3333" y="540.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="358.3333" y="540.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="361.6667" y="542.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="361.6667" y="542.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="365.0000" y="545.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="365.0000" y="545.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="368.3333" y="548.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="368.3333" y="548.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="371.6667" y="550.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="371.6667" y="550.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="355" y="411" width="80" height="190">
- </bounds>
+ <bounds x="355" y="411" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="35" y="249" width="76" height="95">
- </bounds>
+ <bounds x="35" y="249" width="76" height="95"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="35.0000" y="249.0000" width="76.0000" height="95.0000">
- </bounds>
+ <bounds x="35.0000" y="249.0000" width="76.0000" height="95.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="38.1667" y="252.9583" width="69.6667" height="87.0833">
- </bounds>
+ <bounds x="38.1667" y="252.9583" width="69.6667" height="87.0833"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="41.3333" y="256.9167" width="63.3333" height="79.1667">
- </bounds>
+ <bounds x="41.3333" y="256.9167" width="63.3333" height="79.1667"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="44.5000" y="260.8750" width="57.0000" height="71.2500">
- </bounds>
+ <bounds x="44.5000" y="260.8750" width="57.0000" height="71.2500"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="47.6667" y="264.8333" width="50.6667" height="63.3333">
- </bounds>
+ <bounds x="47.6667" y="264.8333" width="50.6667" height="63.3333"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="50.8333" y="268.7917" width="44.3333" height="55.4167">
- </bounds>
+ <bounds x="50.8333" y="268.7917" width="44.3333" height="55.4167"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="35" y="249" width="76" height="95">
- </bounds>
+ <bounds x="35" y="249" width="76" height="95"/>
</element>
<element name="lamp197" ref="lamp_197_2_border" state="0">
- <bounds x="449" y="528" width="50" height="26">
- </bounds>
+ <bounds x="449" y="528" width="50" height="26"/>
</element>
<element name="lamp197" ref="lamp_197_2" state="0">
- <bounds x="451" y="530" width="46" height="22">
- </bounds>
+ <bounds x="451" y="530" width="46" height="22"/>
</element>
<element name="lamp216" ref="lamp_216_2_border" state="0">
- <bounds x="4" y="524" width="48" height="27">
- </bounds>
+ <bounds x="4" y="524" width="48" height="27"/>
</element>
<element name="lamp216" ref="lamp_216_2" state="0">
- <bounds x="6" y="526" width="44" height="23">
- </bounds>
+ <bounds x="6" y="526" width="44" height="23"/>
</element>
<element name="lamp215" ref="lamp_215_2_border" state="0">
- <bounds x="4" y="551" width="48" height="27">
- </bounds>
+ <bounds x="4" y="551" width="48" height="27"/>
</element>
<element name="lamp215" ref="lamp_215_2" state="0">
- <bounds x="6" y="553" width="44" height="23">
- </bounds>
+ <bounds x="6" y="553" width="44" height="23"/>
</element>
<element name="lamp214" ref="lamp_214_2_border" state="0">
- <bounds x="4" y="578" width="48" height="27">
- </bounds>
+ <bounds x="4" y="578" width="48" height="27"/>
</element>
<element name="lamp214" ref="lamp_214_2" state="0">
- <bounds x="6" y="580" width="44" height="23">
- </bounds>
+ <bounds x="6" y="580" width="44" height="23"/>
</element>
<element name="lamp196" ref="lamp_196_2_border" state="0">
- <bounds x="4" y="605" width="48" height="27">
- </bounds>
+ <bounds x="4" y="605" width="48" height="27"/>
</element>
<element name="lamp196" ref="lamp_196_2" state="0">
- <bounds x="6" y="607" width="44" height="23">
- </bounds>
+ <bounds x="6" y="607" width="44" height="23"/>
</element>
<element name="lamp217" ref="lamp_217_2_border" state="0">
- <bounds x="4" y="497" width="48" height="27">
- </bounds>
+ <bounds x="4" y="497" width="48" height="27"/>
</element>
<element name="lamp217" ref="lamp_217_2" state="0">
- <bounds x="6" y="499" width="44" height="23">
- </bounds>
+ <bounds x="6" y="499" width="44" height="23"/>
</element>
<element name="lamp218" ref="lamp_218_2_border" state="0">
- <bounds x="4" y="472" width="48" height="27">
- </bounds>
+ <bounds x="4" y="472" width="48" height="27"/>
</element>
<element name="lamp218" ref="lamp_218_2" state="0">
- <bounds x="6" y="474" width="44" height="23">
- </bounds>
+ <bounds x="6" y="474" width="44" height="23"/>
</element>
<element name="lamp219" ref="lamp_219_2_border" state="0">
- <bounds x="4" y="447" width="48" height="27">
- </bounds>
+ <bounds x="4" y="447" width="48" height="27"/>
</element>
<element name="lamp219" ref="lamp_219_2" state="0">
- <bounds x="6" y="449" width="44" height="23">
- </bounds>
+ <bounds x="6" y="449" width="44" height="23"/>
</element>
<element name="lamp221" ref="lamp_221_2_border" state="0">
- <bounds x="4" y="420" width="48" height="27">
- </bounds>
+ <bounds x="4" y="420" width="48" height="27"/>
</element>
<element name="lamp221" ref="lamp_221_2" state="0">
- <bounds x="6" y="422" width="44" height="23">
- </bounds>
+ <bounds x="6" y="422" width="44" height="23"/>
</element>
<element name="lamp223" ref="lamp_223_2_border" state="0">
- <bounds x="4" y="393" width="48" height="27">
- </bounds>
+ <bounds x="4" y="393" width="48" height="27"/>
</element>
<element name="lamp223" ref="lamp_223_2" state="0">
- <bounds x="6" y="395" width="44" height="23">
- </bounds>
+ <bounds x="6" y="395" width="44" height="23"/>
</element>
<element name="lamp226" ref="lamp_226_2_border" state="0">
- <bounds x="4" y="366" width="48" height="27">
- </bounds>
+ <bounds x="4" y="366" width="48" height="27"/>
</element>
<element name="lamp226" ref="lamp_226_2" state="0">
- <bounds x="6" y="368" width="44" height="23">
- </bounds>
+ <bounds x="6" y="368" width="44" height="23"/>
</element>
<element name="lamp82" ref="lamp_82_3_border" state="0">
- <bounds x="529" y="32" width="124" height="37">
- </bounds>
+ <bounds x="529" y="32" width="124" height="37"/>
</element>
<element name="lamp82" ref="lamp_82_3" state="0">
- <bounds x="531" y="34" width="120" height="33">
- </bounds>
+ <bounds x="531" y="34" width="120" height="33"/>
</element>
<element name="lamp54" ref="lamp_54_2_border" state="0">
- <bounds x="159" y="239" width="62" height="32">
- </bounds>
+ <bounds x="159" y="239" width="62" height="32"/>
</element>
<element name="lamp54" ref="lamp_54_2" state="0">
- <bounds x="161" y="241" width="58" height="28">
- </bounds>
+ <bounds x="161" y="241" width="58" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_4_border" state="0">
- <bounds x="529" y="1" width="124" height="32">
- </bounds>
+ <bounds x="529" y="1" width="124" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_4" state="0">
- <bounds x="531" y="3" width="120" height="28">
- </bounds>
+ <bounds x="531" y="3" width="120" height="28"/>
</element>
<element name="lamp79" ref="lamp_79_2_border" state="0">
- <bounds x="346" y="1" width="62" height="32">
- </bounds>
+ <bounds x="346" y="1" width="62" height="32"/>
</element>
<element name="lamp79" ref="lamp_79_2" state="0">
- <bounds x="348" y="3" width="58" height="28">
- </bounds>
+ <bounds x="348" y="3" width="58" height="28"/>
</element>
<element name="lamp38" ref="lamp_38_2_border" state="0">
- <bounds x="159" y="303" width="62" height="32">
- </bounds>
+ <bounds x="159" y="303" width="62" height="32"/>
</element>
<element name="lamp38" ref="lamp_38_2" state="0">
- <bounds x="161" y="305" width="58" height="28">
- </bounds>
+ <bounds x="161" y="305" width="58" height="28"/>
</element>
<element name="lamp70" ref="lamp_70_2_border" state="0">
- <bounds x="471" y="178" width="62" height="32">
- </bounds>
+ <bounds x="471" y="178" width="62" height="32"/>
</element>
<element name="lamp70" ref="lamp_70_2" state="0">
- <bounds x="473" y="180" width="58" height="28">
- </bounds>
+ <bounds x="473" y="180" width="58" height="28"/>
</element>
<element name="lamp71" ref="lamp_71_2_border" state="0">
- <bounds x="471" y="148" width="62" height="32">
- </bounds>
+ <bounds x="471" y="148" width="62" height="32"/>
</element>
<element name="lamp71" ref="lamp_71_2" state="0">
- <bounds x="473" y="150" width="58" height="28">
- </bounds>
+ <bounds x="473" y="150" width="58" height="28"/>
</element>
<element name="lamp39" ref="lamp_39_2_border" state="0">
- <bounds x="159" y="271" width="62" height="32">
- </bounds>
+ <bounds x="159" y="271" width="62" height="32"/>
</element>
<element name="lamp39" ref="lamp_39_2" state="0">
- <bounds x="161" y="273" width="58" height="28">
- </bounds>
+ <bounds x="161" y="273" width="58" height="28"/>
</element>
<element name="lamp213" ref="lamp_213_2_border" state="0">
- <bounds x="8" y="283" width="19" height="19">
- </bounds>
+ <bounds x="8" y="283" width="19" height="19"/>
</element>
<element name="lamp213" ref="lamp_213_2" state="0">
- <bounds x="10" y="285" width="15" height="15">
- </bounds>
+ <bounds x="10" y="285" width="15" height="15"/>
</element>
<element name="lamp212" ref="lamp_212_2_border" state="0">
- <bounds x="8" y="307" width="19" height="19">
- </bounds>
+ <bounds x="8" y="307" width="19" height="19"/>
</element>
<element name="lamp212" ref="lamp_212_2" state="0">
- <bounds x="10" y="309" width="15" height="15">
- </bounds>
+ <bounds x="10" y="309" width="15" height="15"/>
</element>
<element name="lamp231" ref="lamp_231_2_border" state="0">
- <bounds x="439" y="455" width="37" height="47">
- </bounds>
+ <bounds x="439" y="455" width="37" height="47"/>
</element>
<element name="lamp231" ref="lamp_231_2" state="0">
- <bounds x="441" y="457" width="33" height="43">
- </bounds>
+ <bounds x="441" y="457" width="33" height="43"/>
</element>
<element name="lamp232" ref="lamp_232_2_border" state="0">
- <bounds x="476" y="455" width="37" height="47">
- </bounds>
+ <bounds x="476" y="455" width="37" height="47"/>
</element>
<element name="lamp232" ref="lamp_232_2" state="0">
- <bounds x="478" y="457" width="33" height="43">
- </bounds>
+ <bounds x="478" y="457" width="33" height="43"/>
</element>
<element name="lamp227" ref="lamp_227_2_border" state="0">
- <bounds x="513" y="455" width="37" height="47">
- </bounds>
+ <bounds x="513" y="455" width="37" height="47"/>
</element>
<element name="lamp227" ref="lamp_227_2" state="0">
- <bounds x="515" y="457" width="33" height="43">
- </bounds>
+ <bounds x="515" y="457" width="33" height="43"/>
</element>
<element name="lamp237" ref="lamp_237_2_border" state="0">
- <bounds x="589" y="463" width="52" height="32">
- </bounds>
+ <bounds x="589" y="463" width="52" height="32"/>
</element>
<element name="lamp237" ref="lamp_237_2" state="0">
- <bounds x="591" y="465" width="48" height="28">
- </bounds>
+ <bounds x="591" y="465" width="48" height="28"/>
</element>
<element name="lamp228" ref="lamp_228_2_border" state="0">
- <bounds x="550" y="455" width="37" height="47">
- </bounds>
+ <bounds x="550" y="455" width="37" height="47"/>
</element>
<element name="lamp228" ref="lamp_228_2" state="0">
- <bounds x="552" y="457" width="33" height="43">
- </bounds>
+ <bounds x="552" y="457" width="33" height="43"/>
</element>
<element name="lamp44" ref="lamp_44_2_border" state="0">
- <bounds x="258" y="312" width="82" height="22">
- </bounds>
+ <bounds x="258" y="312" width="82" height="22"/>
</element>
<element name="lamp44" ref="lamp_44_2" state="0">
- <bounds x="260" y="314" width="78" height="18">
- </bounds>
+ <bounds x="260" y="314" width="78" height="18"/>
</element>
<element name="lamp80" ref="lamp_80_2_border" state="0">
- <bounds x="406" y="1" width="62" height="32">
- </bounds>
+ <bounds x="406" y="1" width="62" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_2" state="0">
- <bounds x="408" y="3" width="58" height="28">
- </bounds>
+ <bounds x="408" y="3" width="58" height="28"/>
</element>
<element name="lamp81" ref="lamp_81_2_border" state="0">
- <bounds x="467" y="1" width="62" height="32">
- </bounds>
+ <bounds x="467" y="1" width="62" height="32"/>
</element>
<element name="lamp81" ref="lamp_81_2" state="0">
- <bounds x="469" y="3" width="58" height="28">
- </bounds>
+ <bounds x="469" y="3" width="58" height="28"/>
</element>
<element name="lamp93" ref="lamp_93_2_border" state="0">
- <bounds x="678" y="157" width="32" height="22">
- </bounds>
+ <bounds x="678" y="157" width="32" height="22"/>
</element>
<element name="lamp93" ref="lamp_93_2" state="0">
- <bounds x="680" y="159" width="28" height="18">
- </bounds>
+ <bounds x="680" y="159" width="28" height="18"/>
</element>
<element name="lamp89" ref="lamp_89_2_border" state="0">
- <bounds x="550" y="157" width="32" height="22">
- </bounds>
+ <bounds x="550" y="157" width="32" height="22"/>
</element>
<element name="lamp89" ref="lamp_89_2" state="0">
- <bounds x="552" y="159" width="28" height="18">
- </bounds>
+ <bounds x="552" y="159" width="28" height="18"/>
</element>
<element name="lamp90" ref="lamp_90_2_border" state="0">
- <bounds x="582" y="157" width="32" height="22">
- </bounds>
+ <bounds x="582" y="157" width="32" height="22"/>
</element>
<element name="lamp90" ref="lamp_90_2" state="0">
- <bounds x="584" y="159" width="28" height="18">
- </bounds>
+ <bounds x="584" y="159" width="28" height="18"/>
</element>
<element name="lamp92" ref="lamp_92_2_border" state="0">
- <bounds x="646" y="157" width="32" height="22">
- </bounds>
+ <bounds x="646" y="157" width="32" height="22"/>
</element>
<element name="lamp92" ref="lamp_92_2" state="0">
- <bounds x="648" y="159" width="28" height="18">
- </bounds>
+ <bounds x="648" y="159" width="28" height="18"/>
</element>
<element name="lamp91" ref="lamp_91_2_border" state="0">
- <bounds x="614" y="157" width="32" height="22">
- </bounds>
+ <bounds x="614" y="157" width="32" height="22"/>
</element>
<element name="lamp91" ref="lamp_91_2" state="0">
- <bounds x="616" y="159" width="28" height="18">
- </bounds>
+ <bounds x="616" y="159" width="28" height="18"/>
</element>
<element name="lamp94" ref="lamp_94_2_border" state="0">
- <bounds x="710" y="157" width="34" height="22">
- </bounds>
+ <bounds x="710" y="157" width="34" height="22"/>
</element>
<element name="lamp94" ref="lamp_94_2" state="0">
- <bounds x="712" y="159" width="30" height="18">
- </bounds>
+ <bounds x="712" y="159" width="30" height="18"/>
</element>
<element name="lamp95" ref="lamp_95_2_border" state="0">
- <bounds x="744" y="156" width="34" height="22">
- </bounds>
+ <bounds x="744" y="156" width="34" height="22"/>
</element>
<element name="lamp95" ref="lamp_95_2" state="0">
- <bounds x="746" y="158" width="30" height="18">
- </bounds>
+ <bounds x="746" y="158" width="30" height="18"/>
</element>
<element name="lamp22" ref="lamp_22_2_border" state="0">
- <bounds x="159" y="333" width="62" height="32">
- </bounds>
+ <bounds x="159" y="333" width="62" height="32"/>
</element>
<element name="lamp22" ref="lamp_22_2" state="0">
- <bounds x="161" y="335" width="58" height="28">
- </bounds>
+ <bounds x="161" y="335" width="58" height="28"/>
</element>
<element name="lamp24" ref="lamp_24_2_border" state="0">
- <bounds x="279" y="333" width="62" height="32">
- </bounds>
+ <bounds x="279" y="333" width="62" height="32"/>
</element>
<element name="lamp24" ref="lamp_24_2" state="0">
- <bounds x="281" y="335" width="58" height="28">
- </bounds>
+ <bounds x="281" y="335" width="58" height="28"/>
</element>
<element name="lamp23" ref="lamp_23_2_border" state="0">
- <bounds x="219" y="333" width="62" height="32">
- </bounds>
+ <bounds x="219" y="333" width="62" height="32"/>
</element>
<element name="lamp23" ref="lamp_23_2" state="0">
- <bounds x="221" y="335" width="58" height="28">
- </bounds>
+ <bounds x="221" y="335" width="58" height="28"/>
</element>
<element name="lamp25" ref="lamp_25_2_border" state="0">
- <bounds x="340" y="333" width="62" height="32">
- </bounds>
+ <bounds x="340" y="333" width="62" height="32"/>
</element>
<element name="lamp25" ref="lamp_25_2" state="0">
- <bounds x="342" y="335" width="58" height="28">
- </bounds>
+ <bounds x="342" y="335" width="58" height="28"/>
</element>
<element name="lamp29" ref="lamp_29_2_border" state="0">
- <bounds x="588" y="333" width="62" height="32">
- </bounds>
+ <bounds x="588" y="333" width="62" height="32"/>
</element>
<element name="lamp29" ref="lamp_29_2" state="0">
- <bounds x="590" y="335" width="58" height="28">
- </bounds>
+ <bounds x="590" y="335" width="58" height="28"/>
</element>
<element name="lamp28" ref="lamp_28_2_border" state="0">
- <bounds x="526" y="333" width="62" height="32">
- </bounds>
+ <bounds x="526" y="333" width="62" height="32"/>
</element>
<element name="lamp28" ref="lamp_28_2" state="0">
- <bounds x="528" y="335" width="58" height="28">
- </bounds>
+ <bounds x="528" y="335" width="58" height="28"/>
</element>
<element name="lamp30" ref="lamp_30_2_border" state="0">
- <bounds x="650" y="333" width="62" height="32">
- </bounds>
+ <bounds x="650" y="333" width="62" height="32"/>
</element>
<element name="lamp30" ref="lamp_30_2" state="0">
- <bounds x="652" y="335" width="58" height="28">
- </bounds>
+ <bounds x="652" y="335" width="58" height="28"/>
</element>
<element name="lamp27" ref="lamp_27_2_border" state="0">
- <bounds x="464" y="333" width="62" height="32">
- </bounds>
+ <bounds x="464" y="333" width="62" height="32"/>
</element>
<element name="lamp27" ref="lamp_27_2" state="0">
- <bounds x="466" y="335" width="58" height="28">
- </bounds>
+ <bounds x="466" y="335" width="58" height="28"/>
</element>
<element name="lamp26" ref="lamp_26_2_border" state="0">
- <bounds x="402" y="333" width="62" height="32">
- </bounds>
+ <bounds x="402" y="333" width="62" height="32"/>
</element>
<element name="lamp26" ref="lamp_26_2" state="0">
- <bounds x="404" y="335" width="58" height="28">
- </bounds>
+ <bounds x="404" y="335" width="58" height="28"/>
</element>
<element name="lamp31" ref="lamp_31_2_border" state="0">
- <bounds x="714" y="332" width="62" height="32">
- </bounds>
+ <bounds x="714" y="332" width="62" height="32"/>
</element>
<element name="lamp31" ref="lamp_31_2" state="0">
- <bounds x="716" y="334" width="58" height="28">
- </bounds>
+ <bounds x="716" y="334" width="58" height="28"/>
</element>
<element name="lamp205" ref="lamp_205_2_border" state="0">
- <bounds x="714" y="558" width="62" height="32">
- </bounds>
+ <bounds x="714" y="558" width="62" height="32"/>
</element>
<element name="lamp205" ref="lamp_205_2" state="0">
- <bounds x="716" y="560" width="58" height="28">
- </bounds>
+ <bounds x="716" y="560" width="58" height="28"/>
</element>
<element name="lamp206" ref="lamp_206_2_border" state="0">
- <bounds x="714" y="526" width="62" height="32">
- </bounds>
+ <bounds x="714" y="526" width="62" height="32"/>
</element>
<element name="lamp206" ref="lamp_206_2" state="0">
- <bounds x="716" y="528" width="58" height="28">
- </bounds>
+ <bounds x="716" y="528" width="58" height="28"/>
</element>
<element name="lamp207" ref="lamp_207_2_border" state="0">
- <bounds x="714" y="494" width="62" height="32">
- </bounds>
+ <bounds x="714" y="494" width="62" height="32"/>
</element>
<element name="lamp207" ref="lamp_207_2" state="0">
- <bounds x="716" y="496" width="58" height="28">
- </bounds>
+ <bounds x="716" y="496" width="58" height="28"/>
</element>
<element name="lamp239" ref="lamp_239_2_border" state="0">
- <bounds x="714" y="462" width="62" height="32">
- </bounds>
+ <bounds x="714" y="462" width="62" height="32"/>
</element>
<element name="lamp239" ref="lamp_239_2" state="0">
- <bounds x="716" y="464" width="58" height="28">
- </bounds>
+ <bounds x="716" y="464" width="58" height="28"/>
</element>
<element name="lamp234" ref="lamp_234_2_border" state="0">
- <bounds x="714" y="430" width="62" height="32">
- </bounds>
+ <bounds x="714" y="430" width="62" height="32"/>
</element>
<element name="lamp234" ref="lamp_234_2" state="0">
- <bounds x="716" y="432" width="58" height="28">
- </bounds>
+ <bounds x="716" y="432" width="58" height="28"/>
</element>
<element name="lamp235" ref="lamp_235_2_border" state="0">
- <bounds x="714" y="398" width="62" height="32">
- </bounds>
+ <bounds x="714" y="398" width="62" height="32"/>
</element>
<element name="lamp235" ref="lamp_235_2" state="0">
- <bounds x="716" y="400" width="58" height="28">
- </bounds>
+ <bounds x="716" y="400" width="58" height="28"/>
</element>
<element name="lamp230" ref="lamp_230_2_border" state="0">
- <bounds x="714" y="366" width="62" height="32">
- </bounds>
+ <bounds x="714" y="366" width="62" height="32"/>
</element>
<element name="lamp230" ref="lamp_230_2" state="0">
- <bounds x="716" y="368" width="58" height="28">
- </bounds>
+ <bounds x="716" y="368" width="58" height="28"/>
</element>
<element name="lamp204" ref="lamp_204_2_border" state="0">
- <bounds x="677" y="562" width="27" height="27">
- </bounds>
+ <bounds x="677" y="562" width="27" height="27"/>
</element>
<element name="lamp204" ref="lamp_204_2" state="0">
- <bounds x="679" y="564" width="23" height="23">
- </bounds>
+ <bounds x="679" y="564" width="23" height="23"/>
</element>
<element name="lamp203" ref="lamp_203_2_border" state="0">
- <bounds x="648" y="562" width="27" height="27">
- </bounds>
+ <bounds x="648" y="562" width="27" height="27"/>
</element>
<element name="lamp203" ref="lamp_203_2" state="0">
- <bounds x="650" y="564" width="23" height="23">
- </bounds>
+ <bounds x="650" y="564" width="23" height="23"/>
</element>
<element name="lamp202" ref="lamp_202_2_border" state="0">
- <bounds x="619" y="562" width="27" height="27">
- </bounds>
+ <bounds x="619" y="562" width="27" height="27"/>
</element>
<element name="lamp202" ref="lamp_202_2" state="0">
- <bounds x="621" y="564" width="23" height="23">
- </bounds>
+ <bounds x="621" y="564" width="23" height="23"/>
</element>
<element name="lamp201" ref="lamp_201_2_border" state="0">
- <bounds x="590" y="562" width="27" height="27">
- </bounds>
+ <bounds x="590" y="562" width="27" height="27"/>
</element>
<element name="lamp201" ref="lamp_201_2" state="0">
- <bounds x="592" y="564" width="23" height="23">
- </bounds>
+ <bounds x="592" y="564" width="23" height="23"/>
</element>
<element name="lamp200" ref="lamp_200_2_border" state="0">
- <bounds x="561" y="562" width="27" height="27">
- </bounds>
+ <bounds x="561" y="562" width="27" height="27"/>
</element>
<element name="lamp200" ref="lamp_200_2" state="0">
- <bounds x="563" y="564" width="23" height="23">
- </bounds>
+ <bounds x="563" y="564" width="23" height="23"/>
</element>
<element name="lamp199" ref="lamp_199_2_border" state="0">
- <bounds x="532" y="562" width="27" height="27">
- </bounds>
+ <bounds x="532" y="562" width="27" height="27"/>
</element>
<element name="lamp199" ref="lamp_199_2" state="0">
- <bounds x="534" y="564" width="23" height="23">
- </bounds>
+ <bounds x="534" y="564" width="23" height="23"/>
</element>
<element name="lamp198" ref="lamp_198_2_border" state="0">
- <bounds x="503" y="562" width="27" height="27">
- </bounds>
+ <bounds x="503" y="562" width="27" height="27"/>
</element>
<element name="lamp198" ref="lamp_198_2" state="0">
- <bounds x="505" y="564" width="23" height="23">
- </bounds>
+ <bounds x="505" y="564" width="23" height="23"/>
</element>
<element name="lamp236" ref="lamp_236_2_border" state="0">
- <bounds x="517" y="520" width="42" height="32">
- </bounds>
+ <bounds x="517" y="520" width="42" height="32"/>
</element>
<element name="lamp236" ref="lamp_236_2" state="0">
- <bounds x="519" y="522" width="38" height="28">
- </bounds>
+ <bounds x="519" y="522" width="38" height="28"/>
</element>
<element name="lamp130" ref="lamp_130_2_border" state="0">
- <bounds x="346" y="45" width="32" height="42">
- </bounds>
+ <bounds x="346" y="45" width="32" height="42"/>
</element>
<element name="lamp130" ref="lamp_130_2" state="0">
- <bounds x="348" y="47" width="28" height="38">
- </bounds>
+ <bounds x="348" y="47" width="28" height="38"/>
</element>
<element name="lamp132" ref="lamp_132_2_border" state="0">
- <bounds x="496" y="46" width="32" height="42">
- </bounds>
+ <bounds x="496" y="46" width="32" height="42"/>
</element>
<element name="lamp132" ref="lamp_132_2" state="0">
- <bounds x="498" y="48" width="28" height="38">
- </bounds>
+ <bounds x="498" y="48" width="28" height="38"/>
</element>
<element name="lamp129" ref="lamp_129_2_border" state="0">
- <bounds x="346" y="85" width="32" height="46">
- </bounds>
+ <bounds x="346" y="85" width="32" height="46"/>
</element>
<element name="lamp129" ref="lamp_129_2" state="0">
- <bounds x="348" y="87" width="28" height="42">
- </bounds>
+ <bounds x="348" y="87" width="28" height="42"/>
</element>
<element name="lamp133" ref="lamp_133_2_border" state="0">
- <bounds x="495" y="84" width="32" height="46">
- </bounds>
+ <bounds x="495" y="84" width="32" height="46"/>
</element>
<element name="lamp133" ref="lamp_133_2" state="0">
- <bounds x="497" y="86" width="28" height="42">
- </bounds>
+ <bounds x="497" y="86" width="28" height="42"/>
</element>
<element name="lamp8" ref="lamp_8_2_border" state="0">
- <bounds x="376" y="70" width="122" height="37">
- </bounds>
+ <bounds x="376" y="70" width="122" height="37"/>
</element>
<element name="lamp8" ref="lamp_8_2" state="0">
- <bounds x="378" y="72" width="118" height="33">
- </bounds>
+ <bounds x="378" y="72" width="118" height="33"/>
</element>
<element name="lamp131" ref="lamp_131_2_border" state="0">
- <bounds x="418" y="30" width="32" height="42">
- </bounds>
+ <bounds x="418" y="30" width="32" height="42"/>
</element>
<element name="lamp131" ref="lamp_131_2" state="0">
- <bounds x="420" y="32" width="28" height="38">
- </bounds>
+ <bounds x="420" y="32" width="28" height="38"/>
</element>
<element name="lamp128" ref="lamp_128_2_border" state="0">
- <bounds x="419" y="104" width="32" height="46">
- </bounds>
+ <bounds x="419" y="104" width="32" height="46"/>
</element>
<element name="lamp128" ref="lamp_128_2" state="0">
- <bounds x="421" y="106" width="28" height="42">
- </bounds>
+ <bounds x="421" y="106" width="28" height="42"/>
</element>
<element name="lamp46" ref="lamp_46_2_border" state="0">
- <bounds x="259" y="272" width="82" height="22">
- </bounds>
+ <bounds x="259" y="272" width="82" height="22"/>
</element>
<element name="lamp46" ref="lamp_46_2" state="0">
- <bounds x="261" y="274" width="78" height="18">
- </bounds>
+ <bounds x="261" y="274" width="78" height="18"/>
</element>
<element name="lamp45" ref="lamp_45_2_border" state="0">
- <bounds x="258" y="292" width="82" height="22">
- </bounds>
+ <bounds x="258" y="292" width="82" height="22"/>
</element>
<element name="lamp45" ref="lamp_45_2" state="0">
- <bounds x="260" y="294" width="78" height="18">
- </bounds>
+ <bounds x="260" y="294" width="78" height="18"/>
</element>
<element name="lamp50" ref="lamp_50_2_border" state="0">
- <bounds x="341" y="272" width="82" height="22">
- </bounds>
+ <bounds x="341" y="272" width="82" height="22"/>
</element>
<element name="lamp50" ref="lamp_50_2" state="0">
- <bounds x="343" y="274" width="78" height="18">
- </bounds>
+ <bounds x="343" y="274" width="78" height="18"/>
</element>
<element name="lamp49" ref="lamp_49_2_border" state="0">
- <bounds x="341" y="291" width="82" height="22">
- </bounds>
+ <bounds x="341" y="291" width="82" height="22"/>
</element>
<element name="lamp49" ref="lamp_49_2" state="0">
- <bounds x="343" y="293" width="78" height="18">
- </bounds>
+ <bounds x="343" y="293" width="78" height="18"/>
</element>
<element name="lamp48" ref="lamp_48_2_border" state="0">
- <bounds x="341" y="311" width="82" height="22">
- </bounds>
+ <bounds x="341" y="311" width="82" height="22"/>
</element>
<element name="lamp48" ref="lamp_48_2" state="0">
- <bounds x="343" y="313" width="78" height="18">
- </bounds>
+ <bounds x="343" y="313" width="78" height="18"/>
</element>
<element name="lamp55" ref="lamp_55_2_border" state="0">
- <bounds x="223" y="239" width="62" height="32">
- </bounds>
+ <bounds x="223" y="239" width="62" height="32"/>
</element>
<element name="lamp55" ref="lamp_55_2" state="0">
- <bounds x="225" y="241" width="58" height="28">
- </bounds>
+ <bounds x="225" y="241" width="58" height="28"/>
</element>
<element name="lamp58" ref="lamp_58_2_border" state="0">
- <bounds x="409" y="239" width="62" height="32">
- </bounds>
+ <bounds x="409" y="239" width="62" height="32"/>
</element>
<element name="lamp58" ref="lamp_58_2" state="0">
- <bounds x="411" y="241" width="58" height="28">
- </bounds>
+ <bounds x="411" y="241" width="58" height="28"/>
</element>
<element name="lamp56" ref="lamp_56_2_border" state="0">
- <bounds x="285" y="239" width="62" height="32">
- </bounds>
+ <bounds x="285" y="239" width="62" height="32"/>
</element>
<element name="lamp56" ref="lamp_56_2" state="0">
- <bounds x="287" y="241" width="58" height="28">
- </bounds>
+ <bounds x="287" y="241" width="58" height="28"/>
</element>
<element name="lamp57" ref="lamp_57_2_border" state="0">
- <bounds x="347" y="239" width="62" height="32">
- </bounds>
+ <bounds x="347" y="239" width="62" height="32"/>
</element>
<element name="lamp57" ref="lamp_57_2" state="0">
- <bounds x="349" y="241" width="58" height="28">
- </bounds>
+ <bounds x="349" y="241" width="58" height="28"/>
</element>
<element name="lamp59" ref="lamp_59_2_border" state="0">
- <bounds x="471" y="239" width="62" height="32">
- </bounds>
+ <bounds x="471" y="239" width="62" height="32"/>
</element>
<element name="lamp59" ref="lamp_59_2" state="0">
- <bounds x="473" y="241" width="58" height="28">
- </bounds>
+ <bounds x="473" y="241" width="58" height="28"/>
</element>
<element name="lamp60" ref="lamp_60_2_border" state="0">
- <bounds x="533" y="239" width="62" height="32">
- </bounds>
+ <bounds x="533" y="239" width="62" height="32"/>
</element>
<element name="lamp60" ref="lamp_60_2" state="0">
- <bounds x="535" y="241" width="58" height="28">
- </bounds>
+ <bounds x="535" y="241" width="58" height="28"/>
</element>
<element name="lamp61" ref="lamp_61_2_border" state="0">
- <bounds x="593" y="239" width="62" height="32">
- </bounds>
+ <bounds x="593" y="239" width="62" height="32"/>
</element>
<element name="lamp61" ref="lamp_61_2" state="0">
- <bounds x="595" y="241" width="58" height="28">
- </bounds>
+ <bounds x="595" y="241" width="58" height="28"/>
</element>
<element name="lamp62" ref="lamp_62_2_border" state="0">
- <bounds x="652" y="239" width="62" height="32">
- </bounds>
+ <bounds x="652" y="239" width="62" height="32"/>
</element>
<element name="lamp62" ref="lamp_62_2" state="0">
- <bounds x="654" y="241" width="58" height="28">
- </bounds>
+ <bounds x="654" y="241" width="58" height="28"/>
</element>
<element name="lamp63" ref="lamp_63_2_border" state="0">
- <bounds x="712" y="239" width="62" height="32">
- </bounds>
+ <bounds x="712" y="239" width="62" height="32"/>
</element>
<element name="lamp63" ref="lamp_63_2" state="0">
- <bounds x="714" y="241" width="58" height="28">
- </bounds>
+ <bounds x="714" y="241" width="58" height="28"/>
</element>
<element name="lamp64" ref="lamp_64_2_border" state="0">
- <bounds x="713" y="207" width="62" height="32">
- </bounds>
+ <bounds x="713" y="207" width="62" height="32"/>
</element>
<element name="lamp64" ref="lamp_64_2" state="0">
- <bounds x="715" y="209" width="58" height="28">
- </bounds>
+ <bounds x="715" y="209" width="58" height="28"/>
</element>
<element name="lamp65" ref="lamp_65_2_border" state="0">
- <bounds x="654" y="207" width="62" height="32">
- </bounds>
+ <bounds x="654" y="207" width="62" height="32"/>
</element>
<element name="lamp65" ref="lamp_65_2" state="0">
- <bounds x="656" y="209" width="58" height="28">
- </bounds>
+ <bounds x="656" y="209" width="58" height="28"/>
</element>
<element name="lamp66" ref="lamp_66_2_border" state="0">
- <bounds x="594" y="208" width="62" height="32">
- </bounds>
+ <bounds x="594" y="208" width="62" height="32"/>
</element>
<element name="lamp66" ref="lamp_66_2" state="0">
- <bounds x="596" y="210" width="58" height="28">
- </bounds>
+ <bounds x="596" y="210" width="58" height="28"/>
</element>
<element name="lamp67" ref="lamp_67_2_border" state="0">
- <bounds x="534" y="208" width="62" height="32">
- </bounds>
+ <bounds x="534" y="208" width="62" height="32"/>
</element>
<element name="lamp67" ref="lamp_67_2" state="0">
- <bounds x="536" y="210" width="58" height="28">
- </bounds>
+ <bounds x="536" y="210" width="58" height="28"/>
</element>
<element name="lamp68" ref="lamp_68_2_border" state="0">
- <bounds x="471" y="209" width="62" height="32">
- </bounds>
+ <bounds x="471" y="209" width="62" height="32"/>
</element>
<element name="lamp68" ref="lamp_68_2" state="0">
- <bounds x="473" y="211" width="58" height="28">
- </bounds>
+ <bounds x="473" y="211" width="58" height="28"/>
</element>
<element name="lamp72" ref="lamp_72_2_border" state="0">
- <bounds x="407" y="148" width="62" height="32">
- </bounds>
+ <bounds x="407" y="148" width="62" height="32"/>
</element>
<element name="lamp72" ref="lamp_72_2" state="0">
- <bounds x="409" y="150" width="58" height="28">
- </bounds>
+ <bounds x="409" y="150" width="58" height="28"/>
</element>
<element name="lamp73" ref="lamp_73_2_border" state="0">
- <bounds x="346" y="148" width="62" height="32">
- </bounds>
+ <bounds x="346" y="148" width="62" height="32"/>
</element>
<element name="lamp73" ref="lamp_73_2" state="0">
- <bounds x="348" y="150" width="58" height="28">
- </bounds>
+ <bounds x="348" y="150" width="58" height="28"/>
</element>
<element name="lamp78" ref="lamp_78_2_border" state="0">
- <bounds x="285" y="1" width="62" height="32">
- </bounds>
+ <bounds x="285" y="1" width="62" height="32"/>
</element>
<element name="lamp78" ref="lamp_78_2" state="0">
- <bounds x="287" y="3" width="58" height="28">
- </bounds>
+ <bounds x="287" y="3" width="58" height="28"/>
</element>
<element name="lamp74" ref="lamp_74_2_border" state="0">
- <bounds x="285" y="148" width="62" height="32">
- </bounds>
+ <bounds x="285" y="148" width="62" height="32"/>
</element>
<element name="lamp74" ref="lamp_74_2" state="0">
- <bounds x="287" y="150" width="58" height="28">
- </bounds>
+ <bounds x="287" y="150" width="58" height="28"/>
</element>
<element name="lamp75" ref="lamp_75_2_border" state="0">
- <bounds x="285" y="111" width="62" height="32">
- </bounds>
+ <bounds x="285" y="111" width="62" height="32"/>
</element>
<element name="lamp75" ref="lamp_75_2" state="0">
- <bounds x="287" y="113" width="58" height="28">
- </bounds>
+ <bounds x="287" y="113" width="58" height="28"/>
</element>
<element name="lamp76" ref="lamp_76_2_border" state="0">
- <bounds x="285" y="76" width="62" height="32">
- </bounds>
+ <bounds x="285" y="76" width="62" height="32"/>
</element>
<element name="lamp76" ref="lamp_76_2" state="0">
- <bounds x="287" y="78" width="58" height="28">
- </bounds>
+ <bounds x="287" y="78" width="58" height="28"/>
</element>
<element name="lamp77" ref="lamp_77_2_border" state="0">
- <bounds x="285" y="38" width="62" height="32">
- </bounds>
+ <bounds x="285" y="38" width="62" height="32"/>
</element>
<element name="lamp77" ref="lamp_77_2" state="0">
- <bounds x="287" y="40" width="58" height="28">
- </bounds>
+ <bounds x="287" y="40" width="58" height="28"/>
</element>
<element name="lamp47" ref="lamp_47_2_border" state="0">
- <bounds x="8" y="1" width="102" height="32">
- </bounds>
+ <bounds x="8" y="1" width="102" height="32"/>
</element>
<element name="lamp47" ref="lamp_47_2" state="0">
- <bounds x="10" y="3" width="98" height="28">
- </bounds>
+ <bounds x="10" y="3" width="98" height="28"/>
</element>
<element name="lamp53" ref="lamp_53_2_border" state="0">
- <bounds x="422" y="272" width="82" height="22">
- </bounds>
+ <bounds x="422" y="272" width="82" height="22"/>
</element>
<element name="lamp53" ref="lamp_53_2" state="0">
- <bounds x="424" y="274" width="78" height="18">
- </bounds>
+ <bounds x="424" y="274" width="78" height="18"/>
</element>
<element name="lamp52" ref="lamp_52_2_border" state="0">
- <bounds x="422" y="292" width="82" height="22">
- </bounds>
+ <bounds x="422" y="292" width="82" height="22"/>
</element>
<element name="lamp52" ref="lamp_52_2" state="0">
- <bounds x="424" y="294" width="78" height="18">
- </bounds>
+ <bounds x="424" y="294" width="78" height="18"/>
</element>
<element name="lamp51" ref="lamp_51_2_border" state="0">
- <bounds x="422" y="311" width="82" height="22">
- </bounds>
+ <bounds x="422" y="311" width="82" height="22"/>
</element>
<element name="lamp51" ref="lamp_51_2" state="0">
- <bounds x="424" y="313" width="78" height="18">
- </bounds>
+ <bounds x="424" y="313" width="78" height="18"/>
</element>
<element name="lamp111" ref="lamp_111_2_border" state="0">
- <bounds x="76" y="139" width="19" height="19">
- </bounds>
+ <bounds x="76" y="139" width="19" height="19"/>
</element>
<element name="lamp111" ref="lamp_111_2" state="0">
- <bounds x="78" y="141" width="15" height="15">
- </bounds>
+ <bounds x="78" y="141" width="15" height="15"/>
</element>
<element name="lamp105" ref="lamp_105_2_border" state="0">
- <bounds x="19" y="139" width="19" height="19">
- </bounds>
+ <bounds x="19" y="139" width="19" height="19"/>
</element>
<element name="lamp105" ref="lamp_105_2" state="0">
- <bounds x="21" y="141" width="15" height="15">
- </bounds>
+ <bounds x="21" y="141" width="15" height="15"/>
</element>
<element name="lamp104" ref="lamp_104_2_border" state="0">
- <bounds x="19" y="118" width="19" height="19">
- </bounds>
+ <bounds x="19" y="118" width="19" height="19"/>
</element>
<element name="lamp104" ref="lamp_104_2" state="0">
- <bounds x="21" y="120" width="15" height="15">
- </bounds>
+ <bounds x="21" y="120" width="15" height="15"/>
</element>
<element name="lamp110" ref="lamp_110_2_border" state="0">
- <bounds x="76" y="118" width="19" height="19">
- </bounds>
+ <bounds x="76" y="118" width="19" height="19"/>
</element>
<element name="lamp110" ref="lamp_110_2" state="0">
- <bounds x="78" y="120" width="15" height="15">
- </bounds>
+ <bounds x="78" y="120" width="15" height="15"/>
</element>
<element name="lamp109" ref="lamp_109_2_border" state="0">
- <bounds x="76" y="97" width="19" height="19">
- </bounds>
+ <bounds x="76" y="97" width="19" height="19"/>
</element>
<element name="lamp109" ref="lamp_109_2" state="0">
- <bounds x="78" y="99" width="15" height="15">
- </bounds>
+ <bounds x="78" y="99" width="15" height="15"/>
</element>
<element name="lamp108" ref="lamp_108_2_border" state="0">
- <bounds x="76" y="77" width="19" height="19">
- </bounds>
+ <bounds x="76" y="77" width="19" height="19"/>
</element>
<element name="lamp108" ref="lamp_108_2" state="0">
- <bounds x="78" y="79" width="15" height="15">
- </bounds>
+ <bounds x="78" y="79" width="15" height="15"/>
</element>
<element name="lamp103" ref="lamp_103_2_border" state="0">
- <bounds x="19" y="97" width="19" height="19">
- </bounds>
+ <bounds x="19" y="97" width="19" height="19"/>
</element>
<element name="lamp103" ref="lamp_103_2" state="0">
- <bounds x="21" y="99" width="15" height="15">
- </bounds>
+ <bounds x="21" y="99" width="15" height="15"/>
</element>
<element name="lamp102" ref="lamp_102_2_border" state="0">
- <bounds x="19" y="77" width="19" height="19">
- </bounds>
+ <bounds x="19" y="77" width="19" height="19"/>
</element>
<element name="lamp102" ref="lamp_102_2" state="0">
- <bounds x="21" y="79" width="15" height="15">
- </bounds>
+ <bounds x="21" y="79" width="15" height="15"/>
</element>
<element name="lamp101" ref="lamp_101_2_border" state="0">
- <bounds x="19" y="58" width="19" height="19">
- </bounds>
+ <bounds x="19" y="58" width="19" height="19"/>
</element>
<element name="lamp101" ref="lamp_101_2" state="0">
- <bounds x="21" y="60" width="15" height="15">
- </bounds>
+ <bounds x="21" y="60" width="15" height="15"/>
</element>
<element name="lamp107" ref="lamp_107_2_border" state="0">
- <bounds x="76" y="57" width="19" height="19">
- </bounds>
+ <bounds x="76" y="57" width="19" height="19"/>
</element>
<element name="lamp107" ref="lamp_107_2" state="0">
- <bounds x="78" y="59" width="15" height="15">
- </bounds>
+ <bounds x="78" y="59" width="15" height="15"/>
</element>
<element name="lamp106" ref="lamp_106_2_border" state="0">
- <bounds x="76" y="36" width="19" height="19">
- </bounds>
+ <bounds x="76" y="36" width="19" height="19"/>
</element>
<element name="lamp106" ref="lamp_106_2" state="0">
- <bounds x="78" y="38" width="15" height="15">
- </bounds>
+ <bounds x="78" y="38" width="15" height="15"/>
</element>
<element name="lamp100" ref="lamp_100_2_border" state="0">
- <bounds x="19" y="36" width="19" height="19">
- </bounds>
+ <bounds x="19" y="36" width="19" height="19"/>
</element>
<element name="lamp100" ref="lamp_100_2" state="0">
- <bounds x="21" y="38" width="15" height="15">
- </bounds>
+ <bounds x="21" y="38" width="15" height="15"/>
</element>
<element name="lamp116" ref="lamp_116_2_border" state="0">
- <bounds x="130" y="142" width="42" height="24">
- </bounds>
+ <bounds x="130" y="142" width="42" height="24"/>
</element>
<element name="lamp116" ref="lamp_116_2" state="0">
- <bounds x="132" y="144" width="38" height="20">
- </bounds>
+ <bounds x="132" y="144" width="38" height="20"/>
</element>
<element name="lamp121" ref="lamp_121_2_border" state="0">
- <bounds x="227" y="142" width="42" height="24">
- </bounds>
+ <bounds x="227" y="142" width="42" height="24"/>
</element>
<element name="lamp121" ref="lamp_121_2" state="0">
- <bounds x="229" y="144" width="38" height="20">
- </bounds>
+ <bounds x="229" y="144" width="38" height="20"/>
</element>
<element name="lamp115" ref="lamp_115_2_border" state="0">
- <bounds x="155" y="166" width="42" height="24">
- </bounds>
+ <bounds x="155" y="166" width="42" height="24"/>
</element>
<element name="lamp115" ref="lamp_115_2" state="0">
- <bounds x="157" y="168" width="38" height="20">
- </bounds>
+ <bounds x="157" y="168" width="38" height="20"/>
</element>
<element name="lamp122" ref="lamp_122_2_border" state="0">
- <bounds x="194" y="166" width="42" height="24">
- </bounds>
+ <bounds x="194" y="166" width="42" height="24"/>
</element>
<element name="lamp122" ref="lamp_122_2" state="0">
- <bounds x="196" y="168" width="38" height="20">
- </bounds>
+ <bounds x="196" y="168" width="38" height="20"/>
</element>
<element name="lamp120" ref="lamp_120_2_border" state="0">
- <bounds x="227" y="120" width="42" height="24">
- </bounds>
+ <bounds x="227" y="120" width="42" height="24"/>
</element>
<element name="lamp120" ref="lamp_120_2" state="0">
- <bounds x="229" y="122" width="38" height="20">
- </bounds>
+ <bounds x="229" y="122" width="38" height="20"/>
</element>
<element name="lamp118" ref="lamp_118_2_border" state="0">
- <bounds x="155" y="99" width="42" height="24">
- </bounds>
+ <bounds x="155" y="99" width="42" height="24"/>
</element>
<element name="lamp118" ref="lamp_118_2" state="0">
- <bounds x="157" y="101" width="38" height="20">
- </bounds>
+ <bounds x="157" y="101" width="38" height="20"/>
</element>
<element name="lamp119" ref="lamp_119_2_border" state="0">
- <bounds x="194" y="99" width="42" height="24">
- </bounds>
+ <bounds x="194" y="99" width="42" height="24"/>
</element>
<element name="lamp119" ref="lamp_119_2" state="0">
- <bounds x="196" y="101" width="38" height="20">
- </bounds>
+ <bounds x="196" y="101" width="38" height="20"/>
</element>
<element name="lamp117" ref="lamp_117_2_border" state="0">
- <bounds x="130" y="120" width="42" height="24">
- </bounds>
+ <bounds x="130" y="120" width="42" height="24"/>
</element>
<element name="lamp117" ref="lamp_117_2" state="0">
- <bounds x="132" y="122" width="38" height="20">
- </bounds>
+ <bounds x="132" y="122" width="38" height="20"/>
</element>
<element name="lamp112" ref="lamp_112_2_border" state="0">
- <bounds x="110" y="191" width="19" height="19">
- </bounds>
+ <bounds x="110" y="191" width="19" height="19"/>
</element>
<element name="lamp112" ref="lamp_112_2" state="0">
- <bounds x="112" y="193" width="15" height="15">
- </bounds>
+ <bounds x="112" y="193" width="15" height="15"/>
</element>
<element name="lamp113" ref="lamp_113_2_border" state="0">
- <bounds x="128" y="191" width="19" height="19">
- </bounds>
+ <bounds x="128" y="191" width="19" height="19"/>
</element>
<element name="lamp113" ref="lamp_113_2" state="0">
- <bounds x="130" y="193" width="15" height="15">
- </bounds>
+ <bounds x="130" y="193" width="15" height="15"/>
</element>
<element name="lamp114" ref="lamp_114_2_border" state="0">
- <bounds x="145" y="189" width="19" height="19">
- </bounds>
+ <bounds x="145" y="189" width="19" height="19"/>
</element>
<element name="lamp114" ref="lamp_114_2" state="0">
- <bounds x="147" y="191" width="15" height="15">
- </bounds>
+ <bounds x="147" y="191" width="15" height="15"/>
</element>
<element name="lamp123" ref="lamp_123_2_border" state="0">
- <bounds x="209" y="190" width="19" height="19">
- </bounds>
+ <bounds x="209" y="190" width="19" height="19"/>
</element>
<element name="lamp123" ref="lamp_123_2" state="0">
- <bounds x="211" y="192" width="15" height="15">
- </bounds>
+ <bounds x="211" y="192" width="15" height="15"/>
</element>
<element name="lamp124" ref="lamp_124_2_border" state="0">
- <bounds x="228" y="190" width="19" height="19">
- </bounds>
+ <bounds x="228" y="190" width="19" height="19"/>
</element>
<element name="lamp124" ref="lamp_124_2" state="0">
- <bounds x="230" y="192" width="15" height="15">
- </bounds>
+ <bounds x="230" y="192" width="15" height="15"/>
</element>
<element name="lamp125" ref="lamp_125_2_border" state="0">
- <bounds x="246" y="189" width="19" height="19">
- </bounds>
+ <bounds x="246" y="189" width="19" height="19"/>
</element>
<element name="lamp125" ref="lamp_125_2" state="0">
- <bounds x="248" y="191" width="15" height="15">
- </bounds>
+ <bounds x="248" y="191" width="15" height="15"/>
</element>
<element name="lamp126" ref="lamp_126_2_border" state="0">
- <bounds x="178" y="122" width="42" height="42">
- </bounds>
+ <bounds x="178" y="122" width="42" height="42"/>
</element>
<element name="lamp126" ref="lamp_126_2" state="0">
- <bounds x="180" y="124" width="38" height="38">
- </bounds>
+ <bounds x="180" y="124" width="38" height="38"/>
</element>
<element name="lamp14" ref="colour_button_144_border" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="736" y="1" width="42" height="27">
- </bounds>
+ <bounds x="736" y="1" width="42" height="27"/>
</element>
<element name="lamp14" ref="colour_button_144" state="0" inputtag="COINS" inputmask="0x01">
- <bounds x="738" y="3" width="38" height="23">
- </bounds>
+ <bounds x="738" y="3" width="38" height="23"/>
</element>
<element name="lamp209" ref="colour_button_145_border" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="190" y="604" width="82" height="38">
- </bounds>
+ <bounds x="190" y="604" width="82" height="38"/>
</element>
<element name="lamp209" ref="colour_button_145" state="0" inputtag="J9_0" inputmask="0x20">
- <bounds x="192" y="606" width="78" height="34">
- </bounds>
+ <bounds x="192" y="606" width="78" height="34"/>
</element>
<element name="lamp212" ref="colour_button_147_border" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="352" y="604" width="82" height="38">
- </bounds>
+ <bounds x="352" y="604" width="82" height="38"/>
</element>
<element name="lamp212" ref="colour_button_147" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="354" y="606" width="78" height="34">
- </bounds>
+ <bounds x="354" y="606" width="78" height="34"/>
</element>
<element name="lamp195" ref="colour_button_147_border" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="352" y="604" width="82" height="38">
- </bounds>
+ <bounds x="352" y="604" width="82" height="38"/>
</element>
<element name="lamp195" ref="colour_button_147" state="0" inputtag="J9_0" inputmask="0x08">
- <bounds x="354" y="606" width="78" height="34">
- </bounds>
+ <bounds x="354" y="606" width="78" height="34"/>
</element>
<element name="lamp213" ref="colour_button_148_border" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="271" y="604" width="82" height="38">
- </bounds>
+ <bounds x="271" y="604" width="82" height="38"/>
</element>
<element name="lamp213" ref="colour_button_148" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="273" y="606" width="78" height="34">
- </bounds>
+ <bounds x="273" y="606" width="78" height="34"/>
</element>
<element name="lamp208" ref="colour_button_148_border" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="271" y="604" width="82" height="38">
- </bounds>
+ <bounds x="271" y="604" width="82" height="38"/>
</element>
<element name="lamp208" ref="colour_button_148" state="0" inputtag="J9_0" inputmask="0x10">
- <bounds x="273" y="606" width="78" height="34">
- </bounds>
+ <bounds x="273" y="606" width="78" height="34"/>
</element>
<element name="lamp210" ref="colour_button_150_border" state="0" inputtag="J9_0" inputmask="0x40">
- <bounds x="112" y="603" width="78" height="38">
- </bounds>
+ <bounds x="112" y="603" width="78" height="38"/>
</element>
<element name="lamp210" ref="colour_button_150" state="0" inputtag="J9_0" inputmask="0x40">
- <bounds x="114" y="605" width="74" height="34">
- </bounds>
+ <bounds x="114" y="605" width="74" height="34"/>
</element>
<element name="lamp194" ref="colour_button_150a_border" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="424" y="604" width="78" height="38">
- </bounds>
+ <bounds x="424" y="604" width="78" height="38"/>
</element>
<element name="lamp194" ref="colour_button_150a" state="0" inputtag="J9_0" inputmask="0x04">
- <bounds x="426" y="606" width="74" height="34">
- </bounds>
+ <bounds x="426" y="606" width="74" height="34"/>
</element>
<element name="lamp193" ref="colour_button_146_border" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="498" y="604" width="78" height="38">
- </bounds>
+ <bounds x="498" y="604" width="78" height="38"/>
</element>
<element name="lamp193" ref="colour_button_146" state="0" inputtag="J9_0" inputmask="0x02">
- <bounds x="500" y="606" width="74" height="34">
- </bounds>
+ <bounds x="500" y="606" width="74" height="34"/>
</element>
<element name="lamp192" ref="colour_button_151_border" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="589" y="604" width="80" height="38">
- </bounds>
+ <bounds x="589" y="604" width="80" height="38"/>
</element>
<element name="lamp192" ref="colour_button_151" state="0" inputtag="J9_0" inputmask="0x01">
- <bounds x="591" y="606" width="76" height="34">
- </bounds>
+ <bounds x="591" y="606" width="76" height="34"/>
</element>
<repeat count="16">
- <param name="i" start="0" increment="1" />
- <param name="x" start="185" increment="17" />
+ <param name="i" start="0" increment="1"/>
+ <param name="x" start="185" increment="17"/>
<element name="vfdblank~i~" ref="vfd0">
- <color red="0.14" green="0.14" blue="0.14"></color>
- <bounds x="~x~" y="364" width="17" height="29">
- </bounds>
+ <color red="0.14" green="0.14" blue="0.14"/>
+ <bounds x="~x~" y="364" width="17" height="29"/>
</element>
<element name="vfd~i~" ref="vfd0">
- <animate name="vfdduty0" />
- <color state="0" red="0.00" green="1.00" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="1.00" blue="1.00" alpha="1.0"></color>
- <bounds x="~x~" y="364" width="17" height="29">
- </bounds>
+ <animate name="vfdduty0"/>
+ <color state="0" red="0.00" green="1.00" blue="1.00" alpha="0.0"/>
+ <color state="31" red="0.00" green="1.00" blue="1.00" alpha="1.0"/>
+ <bounds x="~x~" y="364" width="17" height="29"/>
</element>
</repeat>
<element name="label15" ref="label_15">
- <bounds x="65" y="371" width="27" height="13">
- </bounds>
+ <bounds x="65" y="371" width="27" height="13"/>
</element>
<element name="label16" ref="label_16">
- <bounds x="65" y="394" width="34" height="13">
- </bounds>
+ <bounds x="65" y="394" width="34" height="13"/>
</element>
<element name="label17" ref="label_17">
- <bounds x="65" y="421" width="34" height="13">
- </bounds>
+ <bounds x="65" y="421" width="34" height="13"/>
</element>
<element name="label18" ref="label_18">
- <bounds x="65" y="449" width="34" height="13">
- </bounds>
+ <bounds x="65" y="449" width="34" height="13"/>
</element>
<element name="label19" ref="label_19">
- <bounds x="65" y="478" width="34" height="13">
- </bounds>
+ <bounds x="65" y="478" width="34" height="13"/>
</element>
<element name="label20" ref="label_20">
- <bounds x="65" y="500" width="34" height="13">
- </bounds>
+ <bounds x="65" y="500" width="34" height="13"/>
</element>
<element name="label21" ref="label_21">
- <bounds x="73" y="349" width="34" height="13">
- </bounds>
+ <bounds x="73" y="349" width="34" height="13"/>
</element>
<element name="label22" ref="label_22">
- <bounds x="65" y="529" width="34" height="13">
- </bounds>
+ <bounds x="65" y="529" width="34" height="13"/>
</element>
<element name="label23" ref="label_23">
- <bounds x="65" y="557" width="34" height="13">
- </bounds>
+ <bounds x="65" y="557" width="34" height="13"/>
</element>
<element name="label24" ref="label_24">
- <bounds x="65" y="579" width="34" height="13">
- </bounds>
+ <bounds x="65" y="579" width="34" height="13"/>
</element>
<element name="label25" ref="label_25">
- <bounds x="65" y="613" width="34" height="13">
- </bounds>
+ <bounds x="65" y="613" width="34" height="13"/>
</element>
<element name="label51" ref="label_51">
- <bounds x="616" y="136" width="96" height="19">
- </bounds>
+ <bounds x="616" y="136" width="96" height="19"/>
</element>
<element name="label69" ref="label_69">
- <bounds x="195" y="396" width="25" height="13">
- </bounds>
+ <bounds x="195" y="396" width="25" height="13"/>
</element>
<element name="label70" ref="label_70">
- <bounds x="421" y="394" width="27" height="13">
- </bounds>
+ <bounds x="421" y="394" width="27" height="13"/>
</element>
<element name="label143" ref="label_143">
- <bounds x="483" y="426" width="55" height="20">
- </bounds>
+ <bounds x="483" y="426" width="55" height="20"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/j6stards.lay b/src/mame/layout/j6stards.lay
index 2ff4d0a0b4e..bcf1cb12dcc 100644
--- a/src/mame/layout/j6stards.lay
+++ b/src/mame/layout/j6stards.lay
@@ -881,262 +881,202 @@
</element>
<element name="lamp_212_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_212_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Cherry &#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Stardust &#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_56_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_56_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Triple Bar &#xA3;7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_58_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_58_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Double Bar &#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Single Bar &#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_70_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x JPM &#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_41_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_41_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Bell &#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_218_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_218_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Melon &#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_216_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_216_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Grapes &#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_214_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_214_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Mixed Bar &#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_201_1_border" defstate="0">
@@ -3164,28 +3104,22 @@
<bounds x="549" y="456" width="60" height="60"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_0" state="0">
- <bounds x="549.0000" y="456.0000" width="60.0000" height="60.0000">
- </bounds>
+ <bounds x="549.0000" y="456.0000" width="60.0000" height="60.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="551.5000" y="458.5000" width="55.0000" height="55.0000">
- </bounds>
+ <bounds x="551.5000" y="458.5000" width="55.0000" height="55.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="554.0000" y="461.0000" width="50.0000" height="50.0000">
- </bounds>
+ <bounds x="554.0000" y="461.0000" width="50.0000" height="50.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="556.5000" y="463.5000" width="45.0000" height="45.0000">
- </bounds>
+ <bounds x="556.5000" y="463.5000" width="45.0000" height="45.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="559.0000" y="466.0000" width="40.0000" height="40.0000">
- </bounds>
+ <bounds x="559.0000" y="466.0000" width="40.0000" height="40.0000"/>
</element>
<element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="561.5000" y="468.5000" width="35.0000" height="35.0000">
- </bounds>
+ <bounds x="561.5000" y="468.5000" width="35.0000" height="35.0000"/>
</element>
<element name="sreel4" ref="reel3" state="0">
<bounds x="549" y="456" width="60" height="60"/>
@@ -3432,84 +3366,64 @@
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="741" y="422" width="102" height="32">
- </bounds>
+ <bounds x="741" y="422" width="102" height="32"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="743" y="424" width="98" height="28">
- </bounds>
+ <bounds x="743" y="424" width="98" height="28"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="741" y="161" width="102" height="32">
- </bounds>
+ <bounds x="741" y="161" width="102" height="32"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="743" y="163" width="98" height="28">
- </bounds>
+ <bounds x="743" y="163" width="98" height="28"/>
</element>
<element name="lamp56" ref="lamp_56_1_border" state="0">
- <bounds x="741" y="190" width="102" height="32">
- </bounds>
+ <bounds x="741" y="190" width="102" height="32"/>
</element>
<element name="lamp56" ref="lamp_56_1" state="0">
- <bounds x="743" y="192" width="98" height="28">
- </bounds>
+ <bounds x="743" y="192" width="98" height="28"/>
</element>
<element name="lamp58" ref="lamp_58_1_border" state="0">
- <bounds x="741" y="219" width="102" height="32">
- </bounds>
+ <bounds x="741" y="219" width="102" height="32"/>
</element>
<element name="lamp58" ref="lamp_58_1" state="0">
- <bounds x="743" y="221" width="98" height="28">
- </bounds>
+ <bounds x="743" y="221" width="98" height="28"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="741" y="248" width="102" height="32">
- </bounds>
+ <bounds x="741" y="248" width="102" height="32"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="743" y="250" width="98" height="28">
- </bounds>
+ <bounds x="743" y="250" width="98" height="28"/>
</element>
<element name="lamp70" ref="lamp_70_1_border" state="0">
- <bounds x="741" y="277" width="102" height="32">
- </bounds>
+ <bounds x="741" y="277" width="102" height="32"/>
</element>
<element name="lamp70" ref="lamp_70_1" state="0">
- <bounds x="743" y="279" width="98" height="28">
- </bounds>
+ <bounds x="743" y="279" width="98" height="28"/>
</element>
<element name="lamp41" ref="lamp_41_1_border" state="0">
- <bounds x="741" y="306" width="102" height="32">
- </bounds>
+ <bounds x="741" y="306" width="102" height="32"/>
</element>
<element name="lamp41" ref="lamp_41_1" state="0">
- <bounds x="743" y="308" width="98" height="28">
- </bounds>
+ <bounds x="743" y="308" width="98" height="28"/>
</element>
<element name="lamp218" ref="lamp_218_1_border" state="0">
- <bounds x="741" y="335" width="102" height="32">
- </bounds>
+ <bounds x="741" y="335" width="102" height="32"/>
</element>
<element name="lamp218" ref="lamp_218_1" state="0">
- <bounds x="743" y="337" width="98" height="28">
- </bounds>
+ <bounds x="743" y="337" width="98" height="28"/>
</element>
<element name="lamp216" ref="lamp_216_1_border" state="0">
- <bounds x="741" y="364" width="102" height="32">
- </bounds>
+ <bounds x="741" y="364" width="102" height="32"/>
</element>
<element name="lamp216" ref="lamp_216_1" state="0">
- <bounds x="743" y="366" width="98" height="28">
- </bounds>
+ <bounds x="743" y="366" width="98" height="28"/>
</element>
<element name="lamp214" ref="lamp_214_1_border" state="0">
- <bounds x="741" y="393" width="102" height="32">
- </bounds>
+ <bounds x="741" y="393" width="102" height="32"/>
</element>
<element name="lamp214" ref="lamp_214_1" state="0">
- <bounds x="743" y="395" width="98" height="28">
- </bounds>
+ <bounds x="743" y="395" width="98" height="28"/>
</element>
<element name="lamp201" ref="lamp_201_1_border" state="0">
<bounds x="741" y="451" width="102" height="19"/>
@@ -3981,8 +3895,7 @@
<param name="x" start="251" increment="17" />
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="314" width="17" height="30">
- </bounds>
+ <bounds x="~x~" y="314" width="17" height="30"/>
</element>
</repeat>
</view>
diff --git a/src/mame/layout/j6untch.lay b/src/mame/layout/j6untch.lay
index a76744648bc..b1b9f622c38 100644
--- a/src/mame/layout/j6untch.lay
+++ b/src/mame/layout/j6untch.lay
@@ -8,3778 +8,2899 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_121_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_121_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="REEL A FORTUNE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_119_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_119_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="STOP AND STEP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_118_3" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="SPIN A WIN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_91_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_91_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_90_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_90_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="AMBUSH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_89_3_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.06">
- </color>
+ <color red="0.00" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_89_3" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.13">
- </color>
+ <color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="RUN FROM POLICE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_88_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_88_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_99_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_99_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="SHOOT OUT BONUS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_100_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_101_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="HIT AND RUN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_102_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_103_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="AMBUSH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_67_3_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.06">
- </color>
+ <color red="0.00" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_67_3" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.13">
- </color>
+ <color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="MAKE A GETAWAY">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_68_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="EXTRA NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_69_3_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.06">
- </color>
+ <color red="0.00" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_69_3" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.13">
- </color>
+ <color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="CAR CHASE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_70_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="THAT'S A RAP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_71_3_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.06">
- </color>
+ <color red="0.00" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_71_3" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.13">
- </color>
+ <color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="ADVANCE 3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_64_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="GO BACK 2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_65_3_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.06">
- </color>
+ <color red="0.00" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_65_3" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.13">
- </color>
+ <color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="EMPTY GUN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_66_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ADD A BULLET">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_146_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_146_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="U">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_169_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_169_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_171_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_171_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_173_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_173_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_125_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_125_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_126_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_126_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_170_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_170_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="*">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_87_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_87_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="NUMBER RUNNER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_86_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_86_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="RAP CASH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_85_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_85_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_84_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="MAKE AN ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="OFFER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_83_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_83_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_82_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="SHOOT OUT BONUS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_81_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_81_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="LINE UP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_199_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_199_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_198_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_198_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_197_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_197_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_196_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_196_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_80_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="AMBUSH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_200_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_200_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_201_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_201_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="SAFE CRACKER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_202_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_202_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_203_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_203_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_204_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_204_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="SHOOT OUT BONUS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_205_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_205_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="80P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_172_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_172_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="*">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_168_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_168_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="*">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_117_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_117_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_113_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_92_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="RAP FEATURE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_93_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_93_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.13">
- </color>
+ <color red="0.50" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.03">
- </color>
+ <color red="0.12" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_94_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.25">
- </color>
+ <color red="1.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.06">
- </color>
+ <color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="SHOOT OUT BONUS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_95_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_95_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="GET OUTTA TOWN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_96_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_97_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_97_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="ambush">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_98_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="OVER THE ROOF">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_160_3_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_160_3" defstate="0">
<disk state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_161_3_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_161_3" defstate="0">
<disk state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_162_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_162_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_163_3_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_163_3" defstate="0">
<disk state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_166_3_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_166_3" defstate="0">
<disk state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_167_3_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_167_3" defstate="0">
<disk state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_76_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_76_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_73_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_73_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_74_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_74_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_72_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_72_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.28" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="S">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.72" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
</element>
<element name="lamp_75_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_75_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.28" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="S">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.72" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
</element>
<element name="lamp_143_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_143_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_140_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_140_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_141_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_141_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_142_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_142_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_165_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_165_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_157_3_border" defstate="0">
<disk state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_157_3" defstate="0">
<disk state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_131_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_131_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_130_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_130_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_129_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_129_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_128_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_128_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_120_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_120_3" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="STOP A FRUIT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_114_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_115_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_115_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_112_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_116_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_116_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_206_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_206_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="AMBUSH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_207_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_207_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="60P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_221_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_221_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_223_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_223_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_109_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="AMBUSH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_3_border" defstate="0">
<rect state="1">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.03" green="0.06" blue="0.06">
- </color>
+ <color red="0.03" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_108_3" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.13" blue="0.13">
- </color>
+ <color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="RUN FROM POLICE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_107_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_107_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_106_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.50">
- </color>
+ <color red="0.25" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.12">
- </color>
+ <color red="0.06" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_106_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="1.00">
- </color>
+ <color red="0.50" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.25">
- </color>
+ <color red="0.13" green="0.25" blue="0.25"/>
</rect>
<text string="RAP SHEET">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_105_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_105_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="SHOOT OUT BONUS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_104_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_104_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_123_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="WIN SERIES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_122_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_122_3" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="NUDGE TIME">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_148_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_148_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="T">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_147_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_147_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="N">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_151_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_151_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_150_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_150_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="U">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_149_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_149_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_152_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_152_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="H">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_153_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_153_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_154_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_154_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="B">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_155_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_155_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_156_3_border" defstate="0">
<rect state="1">
- <color red="0.38" green="0.38" blue="0.38">
- </color>
+ <color red="0.38" green="0.38" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.09" blue="0.09">
- </color>
+ <color red="0.09" green="0.09" blue="0.09"/>
</rect>
</element>
<element name="lamp_156_3" defstate="0">
<rect state="1">
- <color red="0.75" green="0.75" blue="0.75">
- </color>
+ <color red="0.75" green="0.75" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.19" blue="0.19">
- </color>
+ <color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_236_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_236_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="*">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_237_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_237_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="*">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_238_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_238_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="*">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_235_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_235_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;8.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_234_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_234_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_233_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_233_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_232_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_232_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;3.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_228_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_228_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_229_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_229_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_230_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_230_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_231_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_231_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_215_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_215_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Melon">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_214_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_214_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Grapes">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_213_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_213_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Mixed Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_219_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_219_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Triple Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_216_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_216_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="JPM">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_217_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_217_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Single Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_218_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_218_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Double Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_212_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_212_3" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_52_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="60P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.28" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="S">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.72" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
</element>
<element name="lamp_50_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_50_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_3_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_49_3" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.28" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="S">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.72" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
</element>
<element name="lamp_48_3_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.50" blue="0.25">
- </color>
+ <color red="0.25" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.12" blue="0.06">
- </color>
+ <color red="0.06" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_48_3" defstate="0">
<rect state="1">
- <color red="0.50" green="1.00" blue="0.50">
- </color>
+ <color red="0.50" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.25" blue="0.13">
- </color>
+ <color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="40P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.25" blue="0.38">
- </color>
+ <color red="0.50" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.06" blue="0.09">
- </color>
+ <color red="0.12" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_53_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.50" blue="0.75">
- </color>
+ <color red="1.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.13" blue="0.19">
- </color>
+ <color red="0.25" green="0.13" blue="0.19"/>
</disk>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_54_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.25" blue="0.38">
- </color>
+ <color red="0.50" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.06" blue="0.09">
- </color>
+ <color red="0.12" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_54_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.50" blue="0.75">
- </color>
+ <color red="1.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.13" blue="0.19">
- </color>
+ <color red="0.25" green="0.13" blue="0.19"/>
</disk>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_55_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.25" blue="0.38">
- </color>
+ <color red="0.50" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.06" blue="0.09">
- </color>
+ <color red="0.12" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_55_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.50" blue="0.75">
- </color>
+ <color red="1.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.13" blue="0.19">
- </color>
+ <color red="0.25" green="0.13" blue="0.19"/>
</disk>
<text string="A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_56_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.25" blue="0.38">
- </color>
+ <color red="0.50" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.06" blue="0.09">
- </color>
+ <color red="0.12" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_56_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.50" blue="0.75">
- </color>
+ <color red="1.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.13" blue="0.19">
- </color>
+ <color red="0.25" green="0.13" blue="0.19"/>
</disk>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_57_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.25" blue="0.38">
- </color>
+ <color red="0.50" green="0.25" blue="0.38"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.06" blue="0.09">
- </color>
+ <color red="0.12" green="0.06" blue="0.09"/>
</disk>
</element>
<element name="lamp_57_3" defstate="0">
<disk state="1">
- <color red="1.00" green="0.50" blue="0.75">
- </color>
+ <color red="1.00" green="0.50" blue="0.75"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.13" blue="0.19">
- </color>
+ <color red="0.25" green="0.13" blue="0.19"/>
</disk>
<text string="S">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_133_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_133_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_134_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_134_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_135_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_135_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_132_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_132_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_136_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_136_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_137_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_137_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_138_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_138_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_139_3_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_139_3" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="colour_button_263_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_263">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_307_border">
@@ -3924,1611 +3045,1218 @@
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Triple Bar(*),Melon,JPM,Single Bar,Cherry,JPM,Grapes(*),Cherry,Melon,Double Bar(*),Melon,Grapes,Cherry,Single Bar,Grapes(*),Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Triple Bar,Melon(*),JPM,Double Bar,Cherry(*),JPM,Grapes,Cherry,Melon,Single Bar,Melon(*),Grapes,Cherry,Double Bar,Grapes,Cherry(*)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Triple Bar,Melon,JPM(*),Single Bar,Cherry,JPM(*),Grapes,Cherry,Melon,Double Bar,Melon,Grapes,Cherry(*),Single Bar,Grapes,Cherry(*)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="0" stateoffset="-1365" numsymbolsvisible="1" symbollist="12,11,10,9,8,7,6,5,4,3,2,1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="vfd0">
<led16segsc>
- <color red="0.0" green="1.0" blue="1.0">
- </color>
+ <color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_20">
<text string="NUDGE POT">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_86">
<text string="CREDITS">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_122">
<text string="ON WINLINE STARTS FEATURE">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_123">
<text string="WIN">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="LINE">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_124">
<text string="WIN">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="LINE">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_146">
<text string="HIT AND RUN">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_152">
<text string="OVER THE ROOF">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_158">
<text string="LINE UP">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_159">
<text string="OUTTA TOWN">
- <color red="1.0" green="1.0" blue="1.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="1.0" green="1.0" blue="1.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="868" height="778">
- </bounds>
+ <bounds x="0" y="0" width="868" height="778"/>
</element>
<element ref="reel_background">
- <bounds x="201" y="587" width="80" height="140">
- </bounds>
+ <bounds x="201" y="587" width="80" height="140"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="201.0000" y="587.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="201.0000" y="587.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="204.3333" y="588.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="204.3333" y="588.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="207.6667" y="590.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="207.6667" y="590.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="211.0000" y="592.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="211.0000" y="592.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.3333" y="594.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="214.3333" y="594.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.6667" y="596.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="217.6667" y="596.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp24" ref="reel_lamp_layer_0" state="0">
- <bounds x="201.0000" y="633.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="201.0000" y="633.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp24" ref="reel_lamp_layer_1" state="0">
- <bounds x="204.3333" y="635.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="204.3333" y="635.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp24" ref="reel_lamp_layer_2" state="0">
- <bounds x="207.6667" y="637.5556" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="207.6667" y="637.5556" width="66.6667" height="38.8889"/>
</element>
<element name="lamp24" ref="reel_lamp_layer_3" state="0">
- <bounds x="211.0000" y="639.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="211.0000" y="639.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp24" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.3333" y="641.4445" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="214.3333" y="641.4445" width="53.3333" height="31.1111"/>
</element>
<element name="lamp24" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.6667" y="643.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="217.6667" y="643.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp40" ref="reel_lamp_layer_0" state="0">
- <bounds x="201.0000" y="680.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="201.0000" y="680.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp40" ref="reel_lamp_layer_1" state="0">
- <bounds x="204.3333" y="682.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="204.3333" y="682.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp40" ref="reel_lamp_layer_2" state="0">
- <bounds x="207.6667" y="684.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="207.6667" y="684.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp40" ref="reel_lamp_layer_3" state="0">
- <bounds x="211.0000" y="686.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="211.0000" y="686.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp40" ref="reel_lamp_layer_4" state="0">
- <bounds x="214.3333" y="688.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="214.3333" y="688.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp40" ref="reel_lamp_layer_5" state="0">
- <bounds x="217.6667" y="690.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="217.6667" y="690.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="201" y="587" width="80" height="140">
- </bounds>
+ <bounds x="201" y="587" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="285" y="587" width="80" height="140">
- </bounds>
+ <bounds x="285" y="587" width="80" height="140"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="285.0000" y="587.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="285.0000" y="587.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="288.3333" y="588.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="288.3333" y="588.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="291.6667" y="590.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="291.6667" y="590.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="295.0000" y="592.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="295.0000" y="592.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="298.3333" y="594.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="298.3333" y="594.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="301.6667" y="596.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="301.6667" y="596.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp25" ref="reel_lamp_layer_0" state="0">
- <bounds x="285.0000" y="633.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="285.0000" y="633.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp25" ref="reel_lamp_layer_1" state="0">
- <bounds x="288.3333" y="635.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="288.3333" y="635.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp25" ref="reel_lamp_layer_2" state="0">
- <bounds x="291.6667" y="637.5556" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="291.6667" y="637.5556" width="66.6667" height="38.8889"/>
</element>
<element name="lamp25" ref="reel_lamp_layer_3" state="0">
- <bounds x="295.0000" y="639.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="295.0000" y="639.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp25" ref="reel_lamp_layer_4" state="0">
- <bounds x="298.3333" y="641.4445" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="298.3333" y="641.4445" width="53.3333" height="31.1111"/>
</element>
<element name="lamp25" ref="reel_lamp_layer_5" state="0">
- <bounds x="301.6667" y="643.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="301.6667" y="643.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp41" ref="reel_lamp_layer_0" state="0">
- <bounds x="285.0000" y="680.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="285.0000" y="680.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp41" ref="reel_lamp_layer_1" state="0">
- <bounds x="288.3333" y="682.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="288.3333" y="682.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp41" ref="reel_lamp_layer_2" state="0">
- <bounds x="291.6667" y="684.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="291.6667" y="684.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp41" ref="reel_lamp_layer_3" state="0">
- <bounds x="295.0000" y="686.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="295.0000" y="686.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp41" ref="reel_lamp_layer_4" state="0">
- <bounds x="298.3333" y="688.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="298.3333" y="688.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp41" ref="reel_lamp_layer_5" state="0">
- <bounds x="301.6667" y="690.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="301.6667" y="690.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="285" y="587" width="80" height="140">
- </bounds>
+ <bounds x="285" y="587" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="369" y="587" width="80" height="140">
- </bounds>
+ <bounds x="369" y="587" width="80" height="140"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="369.0000" y="587.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="369.0000" y="587.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="372.3333" y="588.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="372.3333" y="588.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="375.6667" y="590.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="375.6667" y="590.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="379.0000" y="592.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="379.0000" y="592.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="382.3333" y="594.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="382.3333" y="594.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="385.6667" y="596.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="385.6667" y="596.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp26" ref="reel_lamp_layer_0" state="0">
- <bounds x="369.0000" y="633.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="369.0000" y="633.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp26" ref="reel_lamp_layer_1" state="0">
- <bounds x="372.3333" y="635.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="372.3333" y="635.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp26" ref="reel_lamp_layer_2" state="0">
- <bounds x="375.6667" y="637.5556" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="375.6667" y="637.5556" width="66.6667" height="38.8889"/>
</element>
<element name="lamp26" ref="reel_lamp_layer_3" state="0">
- <bounds x="379.0000" y="639.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="379.0000" y="639.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp26" ref="reel_lamp_layer_4" state="0">
- <bounds x="382.3333" y="641.4445" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="382.3333" y="641.4445" width="53.3333" height="31.1111"/>
</element>
<element name="lamp26" ref="reel_lamp_layer_5" state="0">
- <bounds x="385.6667" y="643.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="385.6667" y="643.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp42" ref="reel_lamp_layer_0" state="0">
- <bounds x="369.0000" y="680.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="369.0000" y="680.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp42" ref="reel_lamp_layer_1" state="0">
- <bounds x="372.3333" y="682.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="372.3333" y="682.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp42" ref="reel_lamp_layer_2" state="0">
- <bounds x="375.6667" y="684.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="375.6667" y="684.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp42" ref="reel_lamp_layer_3" state="0">
- <bounds x="379.0000" y="686.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="379.0000" y="686.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp42" ref="reel_lamp_layer_4" state="0">
- <bounds x="382.3333" y="688.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="382.3333" y="688.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp42" ref="reel_lamp_layer_5" state="0">
- <bounds x="385.6667" y="690.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="385.6667" y="690.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="369" y="587" width="80" height="140">
- </bounds>
+ <bounds x="369" y="587" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="318" y="192" width="80" height="80">
- </bounds>
+ <bounds x="318" y="192" width="80" height="80"/>
</element>
<element name="lamp27" ref="reel_lamp_layer_0" state="0">
- <bounds x="318.0000" y="192.0000" width="80.0000" height="80.0000">
- </bounds>
+ <bounds x="318.0000" y="192.0000" width="80.0000" height="80.0000"/>
</element>
<element name="lamp27" ref="reel_lamp_layer_1" state="0">
- <bounds x="321.3333" y="195.3333" width="73.3333" height="73.3333">
- </bounds>
+ <bounds x="321.3333" y="195.3333" width="73.3333" height="73.3333"/>
</element>
<element name="lamp27" ref="reel_lamp_layer_2" state="0">
- <bounds x="324.6667" y="198.6667" width="66.6667" height="66.6667">
- </bounds>
+ <bounds x="324.6667" y="198.6667" width="66.6667" height="66.6667"/>
</element>
<element name="lamp27" ref="reel_lamp_layer_3" state="0">
- <bounds x="328.0000" y="202.0000" width="60.0000" height="60.0000">
- </bounds>
+ <bounds x="328.0000" y="202.0000" width="60.0000" height="60.0000"/>
</element>
<element name="lamp27" ref="reel_lamp_layer_4" state="0">
- <bounds x="331.3333" y="205.3333" width="53.3333" height="53.3333">
- </bounds>
+ <bounds x="331.3333" y="205.3333" width="53.3333" height="53.3333"/>
</element>
<element name="lamp27" ref="reel_lamp_layer_5" state="0">
- <bounds x="334.6667" y="208.6667" width="46.6667" height="46.6667">
- </bounds>
+ <bounds x="334.6667" y="208.6667" width="46.6667" height="46.6667"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="318" y="192" width="80" height="80">
- </bounds>
+ <bounds x="318" y="192" width="80" height="80"/>
</element>
<element name="lamp121" ref="lamp_121_3_border" state="0">
- <bounds x="123" y="172" width="78" height="28">
- </bounds>
+ <bounds x="123" y="172" width="78" height="28"/>
</element>
<element name="lamp121" ref="lamp_121_3" state="0">
- <bounds x="125" y="174" width="74" height="24">
- </bounds>
+ <bounds x="125" y="174" width="74" height="24"/>
</element>
<element name="lamp119" ref="lamp_119_3_border" state="0">
- <bounds x="123" y="234" width="78" height="28">
- </bounds>
+ <bounds x="123" y="234" width="78" height="28"/>
</element>
<element name="lamp119" ref="lamp_119_3" state="0">
- <bounds x="125" y="236" width="74" height="24">
- </bounds>
+ <bounds x="125" y="236" width="74" height="24"/>
</element>
<element name="lamp118" ref="lamp_118_3_border" state="0">
- <bounds x="153" y="266" width="78" height="28">
- </bounds>
+ <bounds x="153" y="266" width="78" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_3" state="0">
- <bounds x="155" y="268" width="74" height="24">
- </bounds>
+ <bounds x="155" y="268" width="74" height="24"/>
</element>
<element name="lamp91" ref="lamp_91_3_border" state="0">
- <bounds x="176" y="55" width="58" height="46">
- </bounds>
+ <bounds x="176" y="55" width="58" height="46"/>
</element>
<element name="lamp91" ref="lamp_91_3" state="0">
- <bounds x="178" y="57" width="54" height="42">
- </bounds>
+ <bounds x="178" y="57" width="54" height="42"/>
</element>
<element name="lamp90" ref="lamp_90_3_border" state="0">
- <bounds x="118" y="55" width="58" height="46">
- </bounds>
+ <bounds x="118" y="55" width="58" height="46"/>
</element>
<element name="lamp90" ref="lamp_90_3" state="0">
- <bounds x="120" y="57" width="54" height="42">
- </bounds>
+ <bounds x="120" y="57" width="54" height="42"/>
</element>
<element name="lamp89" ref="lamp_89_3_border" state="0">
- <bounds x="60" y="55" width="58" height="46">
- </bounds>
+ <bounds x="60" y="55" width="58" height="46"/>
</element>
<element name="lamp89" ref="lamp_89_3" state="0">
- <bounds x="62" y="57" width="54" height="42">
- </bounds>
+ <bounds x="62" y="57" width="54" height="42"/>
</element>
<element name="lamp88" ref="lamp_88_3_border" state="0">
- <bounds x="60" y="101" width="58" height="46">
- </bounds>
+ <bounds x="60" y="101" width="58" height="46"/>
</element>
<element name="lamp88" ref="lamp_88_3" state="0">
- <bounds x="62" y="103" width="54" height="42">
- </bounds>
+ <bounds x="62" y="103" width="54" height="42"/>
</element>
<element name="lamp99" ref="lamp_99_3_border" state="0">
- <bounds x="292" y="331" width="58" height="46">
- </bounds>
+ <bounds x="292" y="331" width="58" height="46"/>
</element>
<element name="lamp99" ref="lamp_99_3" state="0">
- <bounds x="294" y="333" width="54" height="42">
- </bounds>
+ <bounds x="294" y="333" width="54" height="42"/>
</element>
<element name="lamp100" ref="lamp_100_3_border" state="0">
- <bounds x="350" y="331" width="58" height="46">
- </bounds>
+ <bounds x="350" y="331" width="58" height="46"/>
</element>
<element name="lamp100" ref="lamp_100_3" state="0">
- <bounds x="352" y="333" width="54" height="42">
- </bounds>
+ <bounds x="352" y="333" width="54" height="42"/>
</element>
<element name="lamp101" ref="lamp_101_3_border" state="0">
- <bounds x="408" y="331" width="58" height="46">
- </bounds>
+ <bounds x="408" y="331" width="58" height="46"/>
</element>
<element name="lamp101" ref="lamp_101_3" state="0">
- <bounds x="410" y="333" width="54" height="42">
- </bounds>
+ <bounds x="410" y="333" width="54" height="42"/>
</element>
<element name="lamp102" ref="lamp_102_3_border" state="0">
- <bounds x="466" y="331" width="58" height="46">
- </bounds>
+ <bounds x="466" y="331" width="58" height="46"/>
</element>
<element name="lamp102" ref="lamp_102_3" state="0">
- <bounds x="468" y="333" width="54" height="42">
- </bounds>
+ <bounds x="468" y="333" width="54" height="42"/>
</element>
<element name="lamp103" ref="lamp_103_3_border" state="0">
- <bounds x="524" y="331" width="58" height="46">
- </bounds>
+ <bounds x="524" y="331" width="58" height="46"/>
</element>
<element name="lamp103" ref="lamp_103_3" state="0">
- <bounds x="526" y="333" width="54" height="42">
- </bounds>
+ <bounds x="526" y="333" width="54" height="42"/>
</element>
<element name="lamp67" ref="lamp_67_3_border" state="0">
- <bounds x="497" y="167" width="80" height="28">
- </bounds>
+ <bounds x="497" y="167" width="80" height="28"/>
</element>
<element name="lamp67" ref="lamp_67_3" state="0">
- <bounds x="499" y="169" width="76" height="24">
- </bounds>
+ <bounds x="499" y="169" width="76" height="24"/>
</element>
<element name="lamp68" ref="lamp_68_3_border" state="0">
- <bounds x="416" y="195" width="80" height="28">
- </bounds>
+ <bounds x="416" y="195" width="80" height="28"/>
</element>
<element name="lamp68" ref="lamp_68_3" state="0">
- <bounds x="418" y="197" width="76" height="24">
- </bounds>
+ <bounds x="418" y="197" width="76" height="24"/>
</element>
<element name="lamp69" ref="lamp_69_3_border" state="0">
- <bounds x="497" y="195" width="80" height="28">
- </bounds>
+ <bounds x="497" y="195" width="80" height="28"/>
</element>
<element name="lamp69" ref="lamp_69_3" state="0">
- <bounds x="499" y="197" width="76" height="24">
- </bounds>
+ <bounds x="499" y="197" width="76" height="24"/>
</element>
<element name="lamp70" ref="lamp_70_3_border" state="0">
- <bounds x="416" y="223" width="80" height="28">
- </bounds>
+ <bounds x="416" y="223" width="80" height="28"/>
</element>
<element name="lamp70" ref="lamp_70_3" state="0">
- <bounds x="418" y="225" width="76" height="24">
- </bounds>
+ <bounds x="418" y="225" width="76" height="24"/>
</element>
<element name="lamp71" ref="lamp_71_3_border" state="0">
- <bounds x="497" y="223" width="80" height="28">
- </bounds>
+ <bounds x="497" y="223" width="80" height="28"/>
</element>
<element name="lamp71" ref="lamp_71_3" state="0">
- <bounds x="499" y="225" width="76" height="24">
- </bounds>
+ <bounds x="499" y="225" width="76" height="24"/>
</element>
<element name="lamp64" ref="lamp_64_3_border" state="0">
- <bounds x="416" y="139" width="80" height="28">
- </bounds>
+ <bounds x="416" y="139" width="80" height="28"/>
</element>
<element name="lamp64" ref="lamp_64_3" state="0">
- <bounds x="418" y="141" width="76" height="24">
- </bounds>
+ <bounds x="418" y="141" width="76" height="24"/>
</element>
<element name="lamp65" ref="lamp_65_3_border" state="0">
- <bounds x="497" y="139" width="80" height="28">
- </bounds>
+ <bounds x="497" y="139" width="80" height="28"/>
</element>
<element name="lamp65" ref="lamp_65_3" state="0">
- <bounds x="499" y="141" width="76" height="24">
- </bounds>
+ <bounds x="499" y="141" width="76" height="24"/>
</element>
<element name="lamp66" ref="lamp_66_3_border" state="0">
- <bounds x="416" y="167" width="80" height="28">
- </bounds>
+ <bounds x="416" y="167" width="80" height="28"/>
</element>
<element name="lamp66" ref="lamp_66_3" state="0">
- <bounds x="418" y="169" width="76" height="24">
- </bounds>
+ <bounds x="418" y="169" width="76" height="24"/>
</element>
<element name="lamp146" ref="lamp_146_3_border" state="0">
- <bounds x="276" y="1" width="36" height="36">
- </bounds>
+ <bounds x="276" y="1" width="36" height="36"/>
</element>
<element name="lamp146" ref="lamp_146_3" state="0">
- <bounds x="278" y="3" width="32" height="32">
- </bounds>
+ <bounds x="278" y="3" width="32" height="32"/>
</element>
<element name="lamp169" ref="lamp_169_3_border" state="0">
- <bounds x="277" y="410" width="22" height="30">
- </bounds>
+ <bounds x="277" y="410" width="22" height="30"/>
</element>
<element name="lamp169" ref="lamp_169_3" state="0">
- <bounds x="279" y="412" width="18" height="26">
- </bounds>
+ <bounds x="279" y="412" width="18" height="26"/>
</element>
<element name="lamp171" ref="lamp_171_3_border" state="0">
- <bounds x="315" y="410" width="22" height="30">
- </bounds>
+ <bounds x="315" y="410" width="22" height="30"/>
</element>
<element name="lamp171" ref="lamp_171_3" state="0">
- <bounds x="317" y="412" width="18" height="26">
- </bounds>
+ <bounds x="317" y="412" width="18" height="26"/>
</element>
<element name="lamp173" ref="lamp_173_3_border" state="0">
- <bounds x="353" y="410" width="22" height="30">
- </bounds>
+ <bounds x="353" y="410" width="22" height="30"/>
</element>
<element name="lamp173" ref="lamp_173_3" state="0">
- <bounds x="355" y="412" width="18" height="26">
- </bounds>
+ <bounds x="355" y="412" width="18" height="26"/>
</element>
<element name="lamp125" ref="lamp_125_3_border" state="0">
- <bounds x="342" y="165" width="36" height="24">
- </bounds>
+ <bounds x="342" y="165" width="36" height="24"/>
</element>
<element name="lamp125" ref="lamp_125_3" state="0">
- <bounds x="344" y="167" width="32" height="20">
- </bounds>
+ <bounds x="344" y="167" width="32" height="20"/>
</element>
<element name="lamp126" ref="lamp_126_3_border" state="0">
- <bounds x="342" y="273" width="36" height="24">
- </bounds>
+ <bounds x="342" y="273" width="36" height="24"/>
</element>
<element name="lamp126" ref="lamp_126_3" state="0">
- <bounds x="344" y="275" width="32" height="20">
- </bounds>
+ <bounds x="344" y="275" width="32" height="20"/>
</element>
<element name="lamp170" ref="lamp_170_3_border" state="0">
- <bounds x="309" y="445" width="36" height="22">
- </bounds>
+ <bounds x="309" y="445" width="36" height="22"/>
</element>
<element name="lamp170" ref="lamp_170_3" state="0">
- <bounds x="311" y="447" width="32" height="18">
- </bounds>
+ <bounds x="311" y="447" width="32" height="18"/>
</element>
<element name="lamp87" ref="lamp_87_3_border" state="0">
- <bounds x="60" y="147" width="58" height="46">
- </bounds>
+ <bounds x="60" y="147" width="58" height="46"/>
</element>
<element name="lamp87" ref="lamp_87_3" state="0">
- <bounds x="62" y="149" width="54" height="42">
- </bounds>
+ <bounds x="62" y="149" width="54" height="42"/>
</element>
<element name="lamp86" ref="lamp_86_3_border" state="0">
- <bounds x="60" y="193" width="58" height="46">
- </bounds>
+ <bounds x="60" y="193" width="58" height="46"/>
</element>
<element name="lamp86" ref="lamp_86_3" state="0">
- <bounds x="62" y="195" width="54" height="42">
- </bounds>
+ <bounds x="62" y="195" width="54" height="42"/>
</element>
<element name="lamp85" ref="lamp_85_3_border" state="0">
- <bounds x="60" y="239" width="58" height="46">
- </bounds>
+ <bounds x="60" y="239" width="58" height="46"/>
</element>
<element name="lamp85" ref="lamp_85_3" state="0">
- <bounds x="62" y="241" width="54" height="42">
- </bounds>
+ <bounds x="62" y="241" width="54" height="42"/>
</element>
<element name="lamp84" ref="lamp_84_3_border" state="0">
- <bounds x="60" y="285" width="58" height="46">
- </bounds>
+ <bounds x="60" y="285" width="58" height="46"/>
</element>
<element name="lamp84" ref="lamp_84_3" state="0">
- <bounds x="62" y="287" width="54" height="42">
- </bounds>
+ <bounds x="62" y="287" width="54" height="42"/>
</element>
<element name="lamp83" ref="lamp_83_3_border" state="0">
- <bounds x="60" y="331" width="58" height="46">
- </bounds>
+ <bounds x="60" y="331" width="58" height="46"/>
</element>
<element name="lamp83" ref="lamp_83_3" state="0">
- <bounds x="62" y="333" width="54" height="42">
- </bounds>
+ <bounds x="62" y="333" width="54" height="42"/>
</element>
<element name="lamp82" ref="lamp_82_3_border" state="0">
- <bounds x="60" y="377" width="58" height="46">
- </bounds>
+ <bounds x="60" y="377" width="58" height="46"/>
</element>
<element name="lamp82" ref="lamp_82_3" state="0">
- <bounds x="62" y="379" width="54" height="42">
- </bounds>
+ <bounds x="62" y="379" width="54" height="42"/>
</element>
<element name="lamp81" ref="lamp_81_3_border" state="0">
- <bounds x="60" y="423" width="58" height="46">
- </bounds>
+ <bounds x="60" y="423" width="58" height="46"/>
</element>
<element name="lamp81" ref="lamp_81_3" state="0">
- <bounds x="62" y="425" width="54" height="42">
- </bounds>
+ <bounds x="62" y="425" width="54" height="42"/>
</element>
<element name="lamp199" ref="lamp_199_3_border" state="0">
- <bounds x="119" y="572" width="26" height="36">
- </bounds>
+ <bounds x="119" y="572" width="26" height="36"/>
</element>
<element name="lamp199" ref="lamp_199_3" state="0">
- <bounds x="121" y="574" width="22" height="32">
- </bounds>
+ <bounds x="121" y="574" width="22" height="32"/>
</element>
<element name="lamp198" ref="lamp_198_3_border" state="0">
- <bounds x="119" y="610" width="26" height="36">
- </bounds>
+ <bounds x="119" y="610" width="26" height="36"/>
</element>
<element name="lamp198" ref="lamp_198_3" state="0">
- <bounds x="121" y="612" width="22" height="32">
- </bounds>
+ <bounds x="121" y="612" width="22" height="32"/>
</element>
<element name="lamp197" ref="lamp_197_3_border" state="0">
- <bounds x="119" y="648" width="26" height="36">
- </bounds>
+ <bounds x="119" y="648" width="26" height="36"/>
</element>
<element name="lamp197" ref="lamp_197_3" state="0">
- <bounds x="121" y="650" width="22" height="32">
- </bounds>
+ <bounds x="121" y="650" width="22" height="32"/>
</element>
<element name="lamp196" ref="lamp_196_3_border" state="0">
- <bounds x="119" y="686" width="26" height="36">
- </bounds>
+ <bounds x="119" y="686" width="26" height="36"/>
</element>
<element name="lamp196" ref="lamp_196_3" state="0">
- <bounds x="121" y="688" width="22" height="32">
- </bounds>
+ <bounds x="121" y="688" width="22" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_3_border" state="0">
- <bounds x="60" y="469" width="58" height="46">
- </bounds>
+ <bounds x="60" y="469" width="58" height="46"/>
</element>
<element name="lamp80" ref="lamp_80_3" state="0">
- <bounds x="62" y="471" width="54" height="42">
- </bounds>
+ <bounds x="62" y="471" width="54" height="42"/>
</element>
<element name="lamp200" ref="lamp_200_3_border" state="0">
- <bounds x="118" y="469" width="58" height="46">
- </bounds>
+ <bounds x="118" y="469" width="58" height="46"/>
</element>
<element name="lamp200" ref="lamp_200_3" state="0">
- <bounds x="120" y="471" width="54" height="42">
- </bounds>
+ <bounds x="120" y="471" width="54" height="42"/>
</element>
<element name="lamp201" ref="lamp_201_3_border" state="0">
- <bounds x="176" y="469" width="58" height="46">
- </bounds>
+ <bounds x="176" y="469" width="58" height="46"/>
</element>
<element name="lamp201" ref="lamp_201_3" state="0">
- <bounds x="178" y="471" width="54" height="42">
- </bounds>
+ <bounds x="178" y="471" width="54" height="42"/>
</element>
<element name="lamp202" ref="lamp_202_3_border" state="0">
- <bounds x="234" y="469" width="58" height="46">
- </bounds>
+ <bounds x="234" y="469" width="58" height="46"/>
</element>
<element name="lamp202" ref="lamp_202_3" state="0">
- <bounds x="236" y="471" width="54" height="42">
- </bounds>
+ <bounds x="236" y="471" width="54" height="42"/>
</element>
<element name="lamp203" ref="lamp_203_3_border" state="0">
- <bounds x="292" y="469" width="58" height="46">
- </bounds>
+ <bounds x="292" y="469" width="58" height="46"/>
</element>
<element name="lamp203" ref="lamp_203_3" state="0">
- <bounds x="294" y="471" width="54" height="42">
- </bounds>
+ <bounds x="294" y="471" width="54" height="42"/>
</element>
<element name="lamp204" ref="lamp_204_3_border" state="0">
- <bounds x="350" y="469" width="58" height="46">
- </bounds>
+ <bounds x="350" y="469" width="58" height="46"/>
</element>
<element name="lamp204" ref="lamp_204_3" state="0">
- <bounds x="352" y="471" width="54" height="42">
- </bounds>
+ <bounds x="352" y="471" width="54" height="42"/>
</element>
<element name="lamp205" ref="lamp_205_3_border" state="0">
- <bounds x="408" y="469" width="58" height="46">
- </bounds>
+ <bounds x="408" y="469" width="58" height="46"/>
</element>
<element name="lamp205" ref="lamp_205_3" state="0">
- <bounds x="410" y="471" width="54" height="42">
- </bounds>
+ <bounds x="410" y="471" width="54" height="42"/>
</element>
<element name="lamp172" ref="lamp_172_3_border" state="0">
- <bounds x="345" y="445" width="36" height="22">
- </bounds>
+ <bounds x="345" y="445" width="36" height="22"/>
</element>
<element name="lamp172" ref="lamp_172_3" state="0">
- <bounds x="347" y="447" width="32" height="18">
- </bounds>
+ <bounds x="347" y="447" width="32" height="18"/>
</element>
<element name="lamp168" ref="lamp_168_3_border" state="0">
- <bounds x="273" y="445" width="36" height="22">
- </bounds>
+ <bounds x="273" y="445" width="36" height="22"/>
</element>
<element name="lamp168" ref="lamp_168_3" state="0">
- <bounds x="275" y="447" width="32" height="18">
- </bounds>
+ <bounds x="275" y="447" width="32" height="18"/>
</element>
<element name="lamp117" ref="lamp_117_3_border" state="0">
- <bounds x="206" y="113" width="25" height="28">
- </bounds>
+ <bounds x="206" y="113" width="25" height="28"/>
</element>
<element name="lamp117" ref="lamp_117_3" state="0">
- <bounds x="208" y="115" width="21" height="24">
- </bounds>
+ <bounds x="208" y="115" width="21" height="24"/>
</element>
<element name="lamp113" ref="lamp_113_3_border" state="0">
- <bounds x="205" y="234" width="25" height="28">
- </bounds>
+ <bounds x="205" y="234" width="25" height="28"/>
</element>
<element name="lamp113" ref="lamp_113_3" state="0">
- <bounds x="207" y="236" width="21" height="24">
- </bounds>
+ <bounds x="207" y="236" width="21" height="24"/>
</element>
<element name="lamp92" ref="lamp_92_3_border" state="0">
- <bounds x="234" y="55" width="58" height="46">
- </bounds>
+ <bounds x="234" y="55" width="58" height="46"/>
</element>
<element name="lamp92" ref="lamp_92_3" state="0">
- <bounds x="236" y="57" width="54" height="42">
- </bounds>
+ <bounds x="236" y="57" width="54" height="42"/>
</element>
<element name="lamp93" ref="lamp_93_3_border" state="0">
- <bounds x="234" y="101" width="58" height="46">
- </bounds>
+ <bounds x="234" y="101" width="58" height="46"/>
</element>
<element name="lamp93" ref="lamp_93_3" state="0">
- <bounds x="236" y="103" width="54" height="42">
- </bounds>
+ <bounds x="236" y="103" width="54" height="42"/>
</element>
<element name="lamp94" ref="lamp_94_3_border" state="0">
- <bounds x="234" y="147" width="58" height="46">
- </bounds>
+ <bounds x="234" y="147" width="58" height="46"/>
</element>
<element name="lamp94" ref="lamp_94_3" state="0">
- <bounds x="236" y="149" width="54" height="42">
- </bounds>
+ <bounds x="236" y="149" width="54" height="42"/>
</element>
<element name="lamp95" ref="lamp_95_3_border" state="0">
- <bounds x="234" y="193" width="58" height="46">
- </bounds>
+ <bounds x="234" y="193" width="58" height="46"/>
</element>
<element name="lamp95" ref="lamp_95_3" state="0">
- <bounds x="236" y="195" width="54" height="42">
- </bounds>
+ <bounds x="236" y="195" width="54" height="42"/>
</element>
<element name="lamp96" ref="lamp_96_3_border" state="0">
- <bounds x="234" y="239" width="58" height="46">
- </bounds>
+ <bounds x="234" y="239" width="58" height="46"/>
</element>
<element name="lamp96" ref="lamp_96_3" state="0">
- <bounds x="236" y="241" width="54" height="42">
- </bounds>
+ <bounds x="236" y="241" width="54" height="42"/>
</element>
<element name="lamp97" ref="lamp_97_3_border" state="0">
- <bounds x="234" y="285" width="58" height="46">
- </bounds>
+ <bounds x="234" y="285" width="58" height="46"/>
</element>
<element name="lamp97" ref="lamp_97_3" state="0">
- <bounds x="236" y="287" width="54" height="42">
- </bounds>
+ <bounds x="236" y="287" width="54" height="42"/>
</element>
<element name="lamp98" ref="lamp_98_3_border" state="0">
- <bounds x="234" y="331" width="58" height="46">
- </bounds>
+ <bounds x="234" y="331" width="58" height="46"/>
</element>
<element name="lamp98" ref="lamp_98_3" state="0">
- <bounds x="236" y="333" width="54" height="42">
- </bounds>
+ <bounds x="236" y="333" width="54" height="42"/>
</element>
<element name="lamp160" ref="lamp_160_3_border" state="0">
- <bounds x="388" y="103" width="24" height="24">
- </bounds>
+ <bounds x="388" y="103" width="24" height="24"/>
</element>
<element name="lamp160" ref="lamp_160_3" state="0">
- <bounds x="390" y="105" width="20" height="20">
- </bounds>
+ <bounds x="390" y="105" width="20" height="20"/>
</element>
<element name="lamp161" ref="lamp_161_3_border" state="0">
- <bounds x="385" y="75" width="24" height="24">
- </bounds>
+ <bounds x="385" y="75" width="24" height="24"/>
</element>
<element name="lamp161" ref="lamp_161_3" state="0">
- <bounds x="387" y="77" width="20" height="20">
- </bounds>
+ <bounds x="387" y="77" width="20" height="20"/>
</element>
<element name="lamp162" ref="lamp_162_3_border" state="0">
- <bounds x="361" y="57" width="24" height="24">
- </bounds>
+ <bounds x="361" y="57" width="24" height="24"/>
</element>
<element name="lamp162" ref="lamp_162_3" state="0">
- <bounds x="363" y="59" width="20" height="20">
- </bounds>
+ <bounds x="363" y="59" width="20" height="20"/>
</element>
<element name="lamp163" ref="lamp_163_3_border" state="0">
- <bounds x="338" y="75" width="24" height="24">
- </bounds>
+ <bounds x="338" y="75" width="24" height="24"/>
</element>
<element name="lamp163" ref="lamp_163_3" state="0">
- <bounds x="340" y="77" width="20" height="20">
- </bounds>
+ <bounds x="340" y="77" width="20" height="20"/>
</element>
<element name="lamp166" ref="lamp_166_3_border" state="0">
- <bounds x="338" y="103" width="24" height="24">
- </bounds>
+ <bounds x="338" y="103" width="24" height="24"/>
</element>
<element name="lamp166" ref="lamp_166_3" state="0">
- <bounds x="340" y="105" width="20" height="20">
- </bounds>
+ <bounds x="340" y="105" width="20" height="20"/>
</element>
<element name="lamp167" ref="lamp_167_3_border" state="0">
- <bounds x="361" y="116" width="24" height="24">
- </bounds>
+ <bounds x="361" y="116" width="24" height="24"/>
</element>
<element name="lamp167" ref="lamp_167_3" state="0">
- <bounds x="363" y="118" width="20" height="20">
- </bounds>
+ <bounds x="363" y="118" width="20" height="20"/>
</element>
<element name="lamp76" ref="lamp_76_3_border" state="0">
- <bounds x="546" y="64" width="25" height="36">
- </bounds>
+ <bounds x="546" y="64" width="25" height="36"/>
</element>
<element name="lamp76" ref="lamp_76_3" state="0">
- <bounds x="548" y="66" width="21" height="32">
- </bounds>
+ <bounds x="548" y="66" width="21" height="32"/>
</element>
<element name="lamp73" ref="lamp_73_3_border" state="0">
- <bounds x="461" y="64" width="25" height="36">
- </bounds>
+ <bounds x="461" y="64" width="25" height="36"/>
</element>
<element name="lamp73" ref="lamp_73_3" state="0">
- <bounds x="463" y="66" width="21" height="32">
- </bounds>
+ <bounds x="463" y="66" width="21" height="32"/>
</element>
<element name="lamp74" ref="lamp_74_3_border" state="0">
- <bounds x="504" y="64" width="25" height="36">
- </bounds>
+ <bounds x="504" y="64" width="25" height="36"/>
</element>
<element name="lamp74" ref="lamp_74_3" state="0">
- <bounds x="506" y="66" width="21" height="32">
- </bounds>
+ <bounds x="506" y="66" width="21" height="32"/>
</element>
<element name="lamp72" ref="lamp_72_3_border" state="0">
- <bounds x="489" y="64" width="14" height="57">
- </bounds>
+ <bounds x="489" y="64" width="14" height="57"/>
</element>
<element name="lamp72" ref="lamp_72_3" state="0">
- <bounds x="491" y="66" width="10" height="53">
- </bounds>
+ <bounds x="491" y="66" width="10" height="53"/>
</element>
<element name="lamp75" ref="lamp_75_3_border" state="0">
- <bounds x="531" y="64" width="14" height="57">
- </bounds>
+ <bounds x="531" y="64" width="14" height="57"/>
</element>
<element name="lamp75" ref="lamp_75_3" state="0">
- <bounds x="533" y="66" width="10" height="53">
- </bounds>
+ <bounds x="533" y="66" width="10" height="53"/>
</element>
<element name="lamp143" ref="lamp_143_3_border" state="0">
- <bounds x="201" y="422" width="25" height="25">
- </bounds>
+ <bounds x="201" y="422" width="25" height="25"/>
</element>
<element name="lamp143" ref="lamp_143_3" state="0">
- <bounds x="203" y="424" width="21" height="21">
- </bounds>
+ <bounds x="203" y="424" width="21" height="21"/>
</element>
<element name="lamp140" ref="lamp_140_3_border" state="0">
- <bounds x="126" y="422" width="25" height="25">
- </bounds>
+ <bounds x="126" y="422" width="25" height="25"/>
</element>
<element name="lamp140" ref="lamp_140_3" state="0">
- <bounds x="128" y="424" width="21" height="21">
- </bounds>
+ <bounds x="128" y="424" width="21" height="21"/>
</element>
<element name="lamp141" ref="lamp_141_3_border" state="0">
- <bounds x="151" y="422" width="25" height="25">
- </bounds>
+ <bounds x="151" y="422" width="25" height="25"/>
</element>
<element name="lamp141" ref="lamp_141_3" state="0">
- <bounds x="153" y="424" width="21" height="21">
- </bounds>
+ <bounds x="153" y="424" width="21" height="21"/>
</element>
<element name="lamp142" ref="lamp_142_3_border" state="0">
- <bounds x="176" y="422" width="25" height="25">
- </bounds>
+ <bounds x="176" y="422" width="25" height="25"/>
</element>
<element name="lamp142" ref="lamp_142_3" state="0">
- <bounds x="178" y="424" width="21" height="21">
- </bounds>
+ <bounds x="178" y="424" width="21" height="21"/>
</element>
<element name="lamp165" ref="lamp_165_3_border" state="0">
- <bounds x="306" y="83" width="25" height="25">
- </bounds>
+ <bounds x="306" y="83" width="25" height="25"/>
</element>
<element name="lamp165" ref="lamp_165_3" state="0">
- <bounds x="308" y="85" width="21" height="21">
- </bounds>
+ <bounds x="308" y="85" width="21" height="21"/>
</element>
<element name="lamp157" ref="lamp_157_3_border" state="0">
- <bounds x="307" y="57" width="25" height="25">
- </bounds>
+ <bounds x="307" y="57" width="25" height="25"/>
</element>
<element name="lamp157" ref="lamp_157_3" state="0">
- <bounds x="309" y="59" width="21" height="21">
- </bounds>
+ <bounds x="309" y="59" width="21" height="21"/>
</element>
<element name="lamp131" ref="lamp_131_3_border" state="0">
- <bounds x="201" y="341" width="25" height="25">
- </bounds>
+ <bounds x="201" y="341" width="25" height="25"/>
</element>
<element name="lamp131" ref="lamp_131_3" state="0">
- <bounds x="203" y="343" width="21" height="21">
- </bounds>
+ <bounds x="203" y="343" width="21" height="21"/>
</element>
<element name="lamp130" ref="lamp_130_3_border" state="0">
- <bounds x="176" y="341" width="25" height="25">
- </bounds>
+ <bounds x="176" y="341" width="25" height="25"/>
</element>
<element name="lamp130" ref="lamp_130_3" state="0">
- <bounds x="178" y="343" width="21" height="21">
- </bounds>
+ <bounds x="178" y="343" width="21" height="21"/>
</element>
<element name="lamp129" ref="lamp_129_3_border" state="0">
- <bounds x="151" y="341" width="25" height="25">
- </bounds>
+ <bounds x="151" y="341" width="25" height="25"/>
</element>
<element name="lamp129" ref="lamp_129_3" state="0">
- <bounds x="153" y="343" width="21" height="21">
- </bounds>
+ <bounds x="153" y="343" width="21" height="21"/>
</element>
<element name="lamp128" ref="lamp_128_3_border" state="0">
- <bounds x="126" y="341" width="25" height="25">
- </bounds>
+ <bounds x="126" y="341" width="25" height="25"/>
</element>
<element name="lamp128" ref="lamp_128_3" state="0">
- <bounds x="128" y="343" width="21" height="21">
- </bounds>
+ <bounds x="128" y="343" width="21" height="21"/>
</element>
<element name="lamp120" ref="lamp_120_3_border" state="0">
- <bounds x="153" y="203" width="78" height="28">
- </bounds>
+ <bounds x="153" y="203" width="78" height="28"/>
</element>
<element name="lamp120" ref="lamp_120_3" state="0">
- <bounds x="155" y="205" width="74" height="24">
- </bounds>
+ <bounds x="155" y="205" width="74" height="24"/>
</element>
<element name="lamp114" ref="lamp_114_3_border" state="0">
- <bounds x="125" y="203" width="25" height="28">
- </bounds>
+ <bounds x="125" y="203" width="25" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_3" state="0">
- <bounds x="127" y="205" width="21" height="24">
- </bounds>
+ <bounds x="127" y="205" width="21" height="24"/>
</element>
<element name="lamp115" ref="lamp_115_3_border" state="0">
- <bounds x="205" y="173" width="25" height="25">
- </bounds>
+ <bounds x="205" y="173" width="25" height="25"/>
</element>
<element name="lamp115" ref="lamp_115_3" state="0">
- <bounds x="207" y="175" width="21" height="21">
- </bounds>
+ <bounds x="207" y="175" width="21" height="21"/>
</element>
<element name="lamp112" ref="lamp_112_3_border" state="0">
- <bounds x="125" y="266" width="25" height="28">
- </bounds>
+ <bounds x="125" y="266" width="25" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_3" state="0">
- <bounds x="127" y="268" width="21" height="24">
- </bounds>
+ <bounds x="127" y="268" width="21" height="24"/>
</element>
<element name="lamp116" ref="lamp_116_3_border" state="0">
- <bounds x="125" y="141" width="25" height="28">
- </bounds>
+ <bounds x="125" y="141" width="25" height="28"/>
</element>
<element name="lamp116" ref="lamp_116_3" state="0">
- <bounds x="127" y="143" width="21" height="24">
- </bounds>
+ <bounds x="127" y="143" width="21" height="24"/>
</element>
<element name="lamp206" ref="lamp_206_3_border" state="0">
- <bounds x="466" y="469" width="58" height="46">
- </bounds>
+ <bounds x="466" y="469" width="58" height="46"/>
</element>
<element name="lamp206" ref="lamp_206_3" state="0">
- <bounds x="468" y="471" width="54" height="42">
- </bounds>
+ <bounds x="468" y="471" width="54" height="42"/>
</element>
<element name="lamp207" ref="lamp_207_3_border" state="0">
- <bounds x="466" y="515" width="58" height="36">
- </bounds>
+ <bounds x="466" y="515" width="58" height="36"/>
</element>
<element name="lamp207" ref="lamp_207_3" state="0">
- <bounds x="468" y="517" width="54" height="32">
- </bounds>
+ <bounds x="468" y="517" width="54" height="32"/>
</element>
<element name="lamp221" ref="lamp_221_3_border" state="0">
- <bounds x="466" y="551" width="58" height="36">
- </bounds>
+ <bounds x="466" y="551" width="58" height="36"/>
</element>
<element name="lamp221" ref="lamp_221_3" state="0">
- <bounds x="468" y="553" width="54" height="32">
- </bounds>
+ <bounds x="468" y="553" width="54" height="32"/>
</element>
<element name="lamp223" ref="lamp_223_3_border" state="0">
- <bounds x="466" y="587" width="58" height="36">
- </bounds>
+ <bounds x="466" y="587" width="58" height="36"/>
</element>
<element name="lamp223" ref="lamp_223_3" state="0">
- <bounds x="468" y="589" width="54" height="32">
- </bounds>
+ <bounds x="468" y="589" width="54" height="32"/>
</element>
<element name="lamp109" ref="lamp_109_3_border" state="0">
- <bounds x="581" y="102" width="58" height="46">
- </bounds>
+ <bounds x="581" y="102" width="58" height="46"/>
</element>
<element name="lamp109" ref="lamp_109_3" state="0">
- <bounds x="583" y="104" width="54" height="42">
- </bounds>
+ <bounds x="583" y="104" width="54" height="42"/>
</element>
<element name="lamp108" ref="lamp_108_3_border" state="0">
- <bounds x="581" y="148" width="58" height="46">
- </bounds>
+ <bounds x="581" y="148" width="58" height="46"/>
</element>
<element name="lamp108" ref="lamp_108_3" state="0">
- <bounds x="583" y="150" width="54" height="42">
- </bounds>
+ <bounds x="583" y="150" width="54" height="42"/>
</element>
<element name="lamp107" ref="lamp_107_3_border" state="0">
- <bounds x="581" y="194" width="58" height="46">
- </bounds>
+ <bounds x="581" y="194" width="58" height="46"/>
</element>
<element name="lamp107" ref="lamp_107_3" state="0">
- <bounds x="583" y="196" width="54" height="42">
- </bounds>
+ <bounds x="583" y="196" width="54" height="42"/>
</element>
<element name="lamp106" ref="lamp_106_3_border" state="0">
- <bounds x="581" y="240" width="58" height="46">
- </bounds>
+ <bounds x="581" y="240" width="58" height="46"/>
</element>
<element name="lamp106" ref="lamp_106_3" state="0">
- <bounds x="583" y="242" width="54" height="42">
- </bounds>
+ <bounds x="583" y="242" width="54" height="42"/>
</element>
<element name="lamp105" ref="lamp_105_3_border" state="0">
- <bounds x="581" y="286" width="58" height="46">
- </bounds>
+ <bounds x="581" y="286" width="58" height="46"/>
</element>
<element name="lamp105" ref="lamp_105_3" state="0">
- <bounds x="583" y="288" width="54" height="42">
- </bounds>
+ <bounds x="583" y="288" width="54" height="42"/>
</element>
<element name="lamp104" ref="lamp_104_3_border" state="0">
- <bounds x="582" y="331" width="58" height="46">
- </bounds>
+ <bounds x="582" y="331" width="58" height="46"/>
</element>
<element name="lamp104" ref="lamp_104_3" state="0">
- <bounds x="584" y="333" width="54" height="42">
- </bounds>
+ <bounds x="584" y="333" width="54" height="42"/>
</element>
<element name="lamp123" ref="lamp_123_3_border" state="0">
- <bounds x="123" y="113" width="78" height="28">
- </bounds>
+ <bounds x="123" y="113" width="78" height="28"/>
</element>
<element name="lamp123" ref="lamp_123_3" state="0">
- <bounds x="125" y="115" width="74" height="24">
- </bounds>
+ <bounds x="125" y="115" width="74" height="24"/>
</element>
<element name="lamp122" ref="lamp_122_3_border" state="0">
- <bounds x="153" y="141" width="78" height="28">
- </bounds>
+ <bounds x="153" y="141" width="78" height="28"/>
</element>
<element name="lamp122" ref="lamp_122_3" state="0">
- <bounds x="155" y="143" width="74" height="24">
- </bounds>
+ <bounds x="155" y="143" width="74" height="24"/>
</element>
<element name="lamp148" ref="lamp_148_3_border" state="0">
- <bounds x="348" y="1" width="36" height="36">
- </bounds>
+ <bounds x="348" y="1" width="36" height="36"/>
</element>
<element name="lamp148" ref="lamp_148_3" state="0">
- <bounds x="350" y="3" width="32" height="32">
- </bounds>
+ <bounds x="350" y="3" width="32" height="32"/>
</element>
<element name="lamp147" ref="lamp_147_3_border" state="0">
- <bounds x="312" y="1" width="36" height="36">
- </bounds>
+ <bounds x="312" y="1" width="36" height="36"/>
</element>
<element name="lamp147" ref="lamp_147_3" state="0">
- <bounds x="314" y="3" width="32" height="32">
- </bounds>
+ <bounds x="314" y="3" width="32" height="32"/>
</element>
<element name="lamp151" ref="lamp_151_3_border" state="0">
- <bounds x="456" y="1" width="36" height="36">
- </bounds>
+ <bounds x="456" y="1" width="36" height="36"/>
</element>
<element name="lamp151" ref="lamp_151_3" state="0">
- <bounds x="458" y="3" width="32" height="32">
- </bounds>
+ <bounds x="458" y="3" width="32" height="32"/>
</element>
<element name="lamp150" ref="lamp_150_3_border" state="0">
- <bounds x="420" y="1" width="36" height="36">
- </bounds>
+ <bounds x="420" y="1" width="36" height="36"/>
</element>
<element name="lamp150" ref="lamp_150_3" state="0">
- <bounds x="422" y="3" width="32" height="32">
- </bounds>
+ <bounds x="422" y="3" width="32" height="32"/>
</element>
<element name="lamp149" ref="lamp_149_3_border" state="0">
- <bounds x="384" y="1" width="36" height="36">
- </bounds>
+ <bounds x="384" y="1" width="36" height="36"/>
</element>
<element name="lamp149" ref="lamp_149_3" state="0">
- <bounds x="386" y="3" width="32" height="32">
- </bounds>
+ <bounds x="386" y="3" width="32" height="32"/>
</element>
<element name="lamp152" ref="lamp_152_3_border" state="0">
- <bounds x="492" y="1" width="36" height="36">
- </bounds>
+ <bounds x="492" y="1" width="36" height="36"/>
</element>
<element name="lamp152" ref="lamp_152_3" state="0">
- <bounds x="494" y="3" width="32" height="32">
- </bounds>
+ <bounds x="494" y="3" width="32" height="32"/>
</element>
<element name="lamp153" ref="lamp_153_3_border" state="0">
- <bounds x="528" y="1" width="36" height="36">
- </bounds>
+ <bounds x="528" y="1" width="36" height="36"/>
</element>
<element name="lamp153" ref="lamp_153_3" state="0">
- <bounds x="530" y="3" width="32" height="32">
- </bounds>
+ <bounds x="530" y="3" width="32" height="32"/>
</element>
<element name="lamp154" ref="lamp_154_3_border" state="0">
- <bounds x="564" y="1" width="36" height="36">
- </bounds>
+ <bounds x="564" y="1" width="36" height="36"/>
</element>
<element name="lamp154" ref="lamp_154_3" state="0">
- <bounds x="566" y="3" width="32" height="32">
- </bounds>
+ <bounds x="566" y="3" width="32" height="32"/>
</element>
<element name="lamp155" ref="lamp_155_3_border" state="0">
- <bounds x="601" y="1" width="36" height="36">
- </bounds>
+ <bounds x="601" y="1" width="36" height="36"/>
</element>
<element name="lamp155" ref="lamp_155_3" state="0">
- <bounds x="603" y="3" width="32" height="32">
- </bounds>
+ <bounds x="603" y="3" width="32" height="32"/>
</element>
<element name="lamp156" ref="lamp_156_3_border" state="0">
- <bounds x="638" y="1" width="36" height="36">
- </bounds>
+ <bounds x="638" y="1" width="36" height="36"/>
</element>
<element name="lamp156" ref="lamp_156_3" state="0">
- <bounds x="640" y="3" width="32" height="32">
- </bounds>
+ <bounds x="640" y="3" width="32" height="32"/>
</element>
<element name="lamp236" ref="lamp_236_3_border" state="0">
- <bounds x="300" y="736" width="30" height="30">
- </bounds>
+ <bounds x="300" y="736" width="30" height="30"/>
</element>
<element name="lamp236" ref="lamp_236_3" state="0">
- <bounds x="302" y="738" width="26" height="26">
- </bounds>
+ <bounds x="302" y="738" width="26" height="26"/>
</element>
<element name="lamp237" ref="lamp_237_3_border" state="0">
- <bounds x="331" y="736" width="30" height="30">
- </bounds>
+ <bounds x="331" y="736" width="30" height="30"/>
</element>
<element name="lamp237" ref="lamp_237_3" state="0">
- <bounds x="333" y="738" width="26" height="26">
- </bounds>
+ <bounds x="333" y="738" width="26" height="26"/>
</element>
<element name="lamp238" ref="lamp_238_3_border" state="0">
- <bounds x="362" y="736" width="30" height="30">
- </bounds>
+ <bounds x="362" y="736" width="30" height="30"/>
</element>
<element name="lamp238" ref="lamp_238_3" state="0">
- <bounds x="364" y="738" width="26" height="26">
- </bounds>
+ <bounds x="364" y="738" width="26" height="26"/>
</element>
<element name="lamp235" ref="lamp_235_3_border" state="0">
- <bounds x="673" y="558" width="50" height="24">
- </bounds>
+ <bounds x="673" y="558" width="50" height="24"/>
</element>
<element name="lamp235" ref="lamp_235_3" state="0">
- <bounds x="675" y="560" width="46" height="20">
- </bounds>
+ <bounds x="675" y="560" width="46" height="20"/>
</element>
<element name="lamp234" ref="lamp_234_3_border" state="0">
- <bounds x="673" y="582" width="50" height="24">
- </bounds>
+ <bounds x="673" y="582" width="50" height="24"/>
</element>
<element name="lamp234" ref="lamp_234_3" state="0">
- <bounds x="675" y="584" width="46" height="20">
- </bounds>
+ <bounds x="675" y="584" width="46" height="20"/>
</element>
<element name="lamp233" ref="lamp_233_3_border" state="0">
- <bounds x="673" y="606" width="50" height="24">
- </bounds>
+ <bounds x="673" y="606" width="50" height="24"/>
</element>
<element name="lamp233" ref="lamp_233_3" state="0">
- <bounds x="675" y="608" width="46" height="20">
- </bounds>
+ <bounds x="675" y="608" width="46" height="20"/>
</element>
<element name="lamp232" ref="lamp_232_3_border" state="0">
- <bounds x="673" y="630" width="50" height="24">
- </bounds>
+ <bounds x="673" y="630" width="50" height="24"/>
</element>
<element name="lamp232" ref="lamp_232_3" state="0">
- <bounds x="675" y="632" width="46" height="20">
- </bounds>
+ <bounds x="675" y="632" width="46" height="20"/>
</element>
<element name="lamp228" ref="lamp_228_3_border" state="0">
- <bounds x="673" y="726" width="50" height="24">
- </bounds>
+ <bounds x="673" y="726" width="50" height="24"/>
</element>
<element name="lamp228" ref="lamp_228_3" state="0">
- <bounds x="675" y="728" width="46" height="20">
- </bounds>
+ <bounds x="675" y="728" width="46" height="20"/>
</element>
<element name="lamp229" ref="lamp_229_3_border" state="0">
- <bounds x="673" y="702" width="50" height="24">
- </bounds>
+ <bounds x="673" y="702" width="50" height="24"/>
</element>
<element name="lamp229" ref="lamp_229_3" state="0">
- <bounds x="675" y="704" width="46" height="20">
- </bounds>
+ <bounds x="675" y="704" width="46" height="20"/>
</element>
<element name="lamp230" ref="lamp_230_3_border" state="0">
- <bounds x="673" y="678" width="50" height="24">
- </bounds>
+ <bounds x="673" y="678" width="50" height="24"/>
</element>
<element name="lamp230" ref="lamp_230_3" state="0">
- <bounds x="675" y="680" width="46" height="20">
- </bounds>
+ <bounds x="675" y="680" width="46" height="20"/>
</element>
<element name="lamp231" ref="lamp_231_3_border" state="0">
- <bounds x="673" y="654" width="50" height="24">
- </bounds>
+ <bounds x="673" y="654" width="50" height="24"/>
</element>
<element name="lamp231" ref="lamp_231_3" state="0">
- <bounds x="675" y="656" width="46" height="20">
- </bounds>
+ <bounds x="675" y="656" width="46" height="20"/>
</element>
<element name="lamp215" ref="lamp_215_3_border" state="0">
- <bounds x="569" y="654" width="102" height="24">
- </bounds>
+ <bounds x="569" y="654" width="102" height="24"/>
</element>
<element name="lamp215" ref="lamp_215_3" state="0">
- <bounds x="571" y="656" width="98" height="20">
- </bounds>
+ <bounds x="571" y="656" width="98" height="20"/>
</element>
<element name="lamp214" ref="lamp_214_3_border" state="0">
- <bounds x="569" y="678" width="102" height="24">
- </bounds>
+ <bounds x="569" y="678" width="102" height="24"/>
</element>
<element name="lamp214" ref="lamp_214_3" state="0">
- <bounds x="571" y="680" width="98" height="20">
- </bounds>
+ <bounds x="571" y="680" width="98" height="20"/>
</element>
<element name="lamp213" ref="lamp_213_3_border" state="0">
- <bounds x="569" y="702" width="102" height="24">
- </bounds>
+ <bounds x="569" y="702" width="102" height="24"/>
</element>
<element name="lamp213" ref="lamp_213_3" state="0">
- <bounds x="571" y="704" width="98" height="20">
- </bounds>
+ <bounds x="571" y="704" width="98" height="20"/>
</element>
<element name="lamp219" ref="lamp_219_3_border" state="0">
- <bounds x="569" y="559" width="102" height="24">
- </bounds>
+ <bounds x="569" y="559" width="102" height="24"/>
</element>
<element name="lamp219" ref="lamp_219_3" state="0">
- <bounds x="571" y="561" width="98" height="20">
- </bounds>
+ <bounds x="571" y="561" width="98" height="20"/>
</element>
<element name="lamp216" ref="lamp_216_3_border" state="0">
- <bounds x="569" y="630" width="102" height="24">
- </bounds>
+ <bounds x="569" y="630" width="102" height="24"/>
</element>
<element name="lamp216" ref="lamp_216_3" state="0">
- <bounds x="571" y="632" width="98" height="20">
- </bounds>
+ <bounds x="571" y="632" width="98" height="20"/>
</element>
<element name="lamp217" ref="lamp_217_3_border" state="0">
- <bounds x="569" y="606" width="102" height="24">
- </bounds>
+ <bounds x="569" y="606" width="102" height="24"/>
</element>
<element name="lamp217" ref="lamp_217_3" state="0">
- <bounds x="571" y="608" width="98" height="20">
- </bounds>
+ <bounds x="571" y="608" width="98" height="20"/>
</element>
<element name="lamp218" ref="lamp_218_3_border" state="0">
- <bounds x="569" y="582" width="102" height="24">
- </bounds>
+ <bounds x="569" y="582" width="102" height="24"/>
</element>
<element name="lamp218" ref="lamp_218_3" state="0">
- <bounds x="571" y="584" width="98" height="20">
- </bounds>
+ <bounds x="571" y="584" width="98" height="20"/>
</element>
<element name="lamp212" ref="lamp_212_3_border" state="0">
- <bounds x="569" y="726" width="102" height="24">
- </bounds>
+ <bounds x="569" y="726" width="102" height="24"/>
</element>
<element name="lamp212" ref="lamp_212_3" state="0">
- <bounds x="571" y="728" width="98" height="20">
- </bounds>
+ <bounds x="571" y="728" width="98" height="20"/>
</element>
<element name="lamp52" ref="lamp_52_3_border" state="0">
- <bounds x="824" y="437" width="36" height="25">
- </bounds>
+ <bounds x="824" y="437" width="36" height="25"/>
</element>
<element name="lamp52" ref="lamp_52_3" state="0">
- <bounds x="826" y="439" width="32" height="21">
- </bounds>
+ <bounds x="826" y="439" width="32" height="21"/>
</element>
<element name="lamp51" ref="lamp_51_3_border" state="0">
- <bounds x="810" y="424" width="14" height="57">
- </bounds>
+ <bounds x="810" y="424" width="14" height="57"/>
</element>
<element name="lamp51" ref="lamp_51_3" state="0">
- <bounds x="812" y="426" width="10" height="53">
- </bounds>
+ <bounds x="812" y="426" width="10" height="53"/>
</element>
<element name="lamp50" ref="lamp_50_3_border" state="0">
- <bounds x="773" y="437" width="36" height="25">
- </bounds>
+ <bounds x="773" y="437" width="36" height="25"/>
</element>
<element name="lamp50" ref="lamp_50_3" state="0">
- <bounds x="775" y="439" width="32" height="21">
- </bounds>
+ <bounds x="775" y="439" width="32" height="21"/>
</element>
<element name="lamp49" ref="lamp_49_3_border" state="0">
- <bounds x="760" y="424" width="14" height="57">
- </bounds>
+ <bounds x="760" y="424" width="14" height="57"/>
</element>
<element name="lamp49" ref="lamp_49_3" state="0">
- <bounds x="762" y="426" width="10" height="53">
- </bounds>
+ <bounds x="762" y="426" width="10" height="53"/>
</element>
<element name="lamp48" ref="lamp_48_3_border" state="0">
- <bounds x="725" y="437" width="36" height="25">
- </bounds>
+ <bounds x="725" y="437" width="36" height="25"/>
</element>
<element name="lamp48" ref="lamp_48_3" state="0">
- <bounds x="727" y="439" width="32" height="21">
- </bounds>
+ <bounds x="727" y="439" width="32" height="21"/>
</element>
<element name="lamp53" ref="lamp_53_3_border" state="0">
- <bounds x="662" y="444" width="26" height="26">
- </bounds>
+ <bounds x="662" y="444" width="26" height="26"/>
</element>
<element name="lamp53" ref="lamp_53_3" state="0">
- <bounds x="664" y="446" width="22" height="22">
- </bounds>
+ <bounds x="664" y="446" width="22" height="22"/>
</element>
<element name="lamp54" ref="lamp_54_3_border" state="0">
- <bounds x="634" y="444" width="26" height="26">
- </bounds>
+ <bounds x="634" y="444" width="26" height="26"/>
</element>
<element name="lamp54" ref="lamp_54_3" state="0">
- <bounds x="636" y="446" width="22" height="22">
- </bounds>
+ <bounds x="636" y="446" width="22" height="22"/>
</element>
<element name="lamp55" ref="lamp_55_3_border" state="0">
- <bounds x="606" y="444" width="26" height="26">
- </bounds>
+ <bounds x="606" y="444" width="26" height="26"/>
</element>
<element name="lamp55" ref="lamp_55_3" state="0">
- <bounds x="608" y="446" width="22" height="22">
- </bounds>
+ <bounds x="608" y="446" width="22" height="22"/>
</element>
<element name="lamp56" ref="lamp_56_3_border" state="0">
- <bounds x="578" y="444" width="26" height="26">
- </bounds>
+ <bounds x="578" y="444" width="26" height="26"/>
</element>
<element name="lamp56" ref="lamp_56_3" state="0">
- <bounds x="580" y="446" width="22" height="22">
- </bounds>
+ <bounds x="580" y="446" width="22" height="22"/>
</element>
<element name="lamp57" ref="lamp_57_3_border" state="0">
- <bounds x="550" y="444" width="26" height="26">
- </bounds>
+ <bounds x="550" y="444" width="26" height="26"/>
</element>
<element name="lamp57" ref="lamp_57_3" state="0">
- <bounds x="552" y="446" width="22" height="22">
- </bounds>
+ <bounds x="552" y="446" width="22" height="22"/>
</element>
<element name="lamp133" ref="lamp_133_3_border" state="0">
- <bounds x="151" y="394" width="25" height="25">
- </bounds>
+ <bounds x="151" y="394" width="25" height="25"/>
</element>
<element name="lamp133" ref="lamp_133_3" state="0">
- <bounds x="153" y="396" width="21" height="21">
- </bounds>
+ <bounds x="153" y="396" width="21" height="21"/>
</element>
<element name="lamp134" ref="lamp_134_3_border" state="0">
- <bounds x="176" y="394" width="25" height="25">
- </bounds>
+ <bounds x="176" y="394" width="25" height="25"/>
</element>
<element name="lamp134" ref="lamp_134_3" state="0">
- <bounds x="178" y="396" width="21" height="21">
- </bounds>
+ <bounds x="178" y="396" width="21" height="21"/>
</element>
<element name="lamp135" ref="lamp_135_3_border" state="0">
- <bounds x="201" y="394" width="25" height="25">
- </bounds>
+ <bounds x="201" y="394" width="25" height="25"/>
</element>
<element name="lamp135" ref="lamp_135_3" state="0">
- <bounds x="203" y="396" width="21" height="21">
- </bounds>
+ <bounds x="203" y="396" width="21" height="21"/>
</element>
<element name="lamp132" ref="lamp_132_3_border" state="0">
- <bounds x="126" y="394" width="25" height="25">
- </bounds>
+ <bounds x="126" y="394" width="25" height="25"/>
</element>
<element name="lamp132" ref="lamp_132_3" state="0">
- <bounds x="128" y="396" width="21" height="21">
- </bounds>
+ <bounds x="128" y="396" width="21" height="21"/>
</element>
<element name="lamp136" ref="lamp_136_3_border" state="0">
- <bounds x="125" y="367" width="25" height="25">
- </bounds>
+ <bounds x="125" y="367" width="25" height="25"/>
</element>
<element name="lamp136" ref="lamp_136_3" state="0">
- <bounds x="127" y="369" width="21" height="21">
- </bounds>
+ <bounds x="127" y="369" width="21" height="21"/>
</element>
<element name="lamp137" ref="lamp_137_3_border" state="0">
- <bounds x="150" y="367" width="25" height="25">
- </bounds>
+ <bounds x="150" y="367" width="25" height="25"/>
</element>
<element name="lamp137" ref="lamp_137_3" state="0">
- <bounds x="152" y="369" width="21" height="21">
- </bounds>
+ <bounds x="152" y="369" width="21" height="21"/>
</element>
<element name="lamp138" ref="lamp_138_3_border" state="0">
- <bounds x="175" y="367" width="25" height="25">
- </bounds>
+ <bounds x="175" y="367" width="25" height="25"/>
</element>
<element name="lamp138" ref="lamp_138_3" state="0">
- <bounds x="177" y="369" width="21" height="21">
- </bounds>
+ <bounds x="177" y="369" width="21" height="21"/>
</element>
<element name="lamp139" ref="lamp_139_3_border" state="0">
- <bounds x="200" y="367" width="25" height="25">
- </bounds>
+ <bounds x="200" y="367" width="25" height="25"/>
</element>
<element name="lamp139" ref="lamp_139_3" state="0">
- <bounds x="202" y="369" width="21" height="21">
- </bounds>
+ <bounds x="202" y="369" width="21" height="21"/>
</element>
<element name="lamp-1" ref="colour_button_263_border" state="0" inputtag="COINS" inputmask="0x01">
<bounds x="743" y="1" width="36" height="36"/>
@@ -5579,124 +4307,94 @@
<bounds x="209" y="812" width="71" height="23"/>
</element>
<element name="digit2" ref="led_digit" state="0">
- <bounds x="454" y="426" width="24" height="32">
- </bounds>
+ <bounds x="454" y="426" width="24" height="32"/>
</element>
<element name="digit3" ref="led_digit" state="0">
- <bounds x="474" y="426" width="24" height="32">
- </bounds>
+ <bounds x="474" y="426" width="24" height="32"/>
</element>
<element name="digit1" ref="led_digit" state="0">
- <bounds x="656" y="516" width="24" height="32">
- </bounds>
+ <bounds x="656" y="516" width="24" height="32"/>
</element>
<element name="digit0" ref="led_digit" state="0">
- <bounds x="632" y="516" width="24" height="32">
- </bounds>
+ <bounds x="632" y="516" width="24" height="32"/>
</element>
<element ref="vfd0_background">
- <bounds x="299" y="297" width="272" height="30">
- </bounds>
+ <bounds x="299" y="297" width="272" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
- <bounds x="299" y="297" width="17" height="30">
- </bounds>
+ <bounds x="299" y="297" width="17" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
- <bounds x="316" y="297" width="17" height="30">
- </bounds>
+ <bounds x="316" y="297" width="17" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
- <bounds x="333" y="297" width="17" height="30">
- </bounds>
+ <bounds x="333" y="297" width="17" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
- <bounds x="350" y="297" width="17" height="30">
- </bounds>
+ <bounds x="350" y="297" width="17" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
- <bounds x="367" y="297" width="17" height="30">
- </bounds>
+ <bounds x="367" y="297" width="17" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
- <bounds x="384" y="297" width="17" height="30">
- </bounds>
+ <bounds x="384" y="297" width="17" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
- <bounds x="401" y="297" width="17" height="30">
- </bounds>
+ <bounds x="401" y="297" width="17" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
- <bounds x="418" y="297" width="17" height="30">
- </bounds>
+ <bounds x="418" y="297" width="17" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
- <bounds x="435" y="297" width="17" height="30">
- </bounds>
+ <bounds x="435" y="297" width="17" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
- <bounds x="452" y="297" width="17" height="30">
- </bounds>
+ <bounds x="452" y="297" width="17" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
- <bounds x="469" y="297" width="17" height="30">
- </bounds>
+ <bounds x="469" y="297" width="17" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
- <bounds x="486" y="297" width="17" height="30">
- </bounds>
+ <bounds x="486" y="297" width="17" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
- <bounds x="503" y="297" width="17" height="30">
- </bounds>
+ <bounds x="503" y="297" width="17" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
- <bounds x="520" y="297" width="17" height="30">
- </bounds>
+ <bounds x="520" y="297" width="17" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
- <bounds x="537" y="297" width="17" height="30">
- </bounds>
+ <bounds x="537" y="297" width="17" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
- <bounds x="554" y="297" width="17" height="30">
- </bounds>
+ <bounds x="554" y="297" width="17" height="30"/>
</element>
<element name="label20" ref="label_20">
- <bounds x="451" y="393" width="49" height="32">
- </bounds>
+ <bounds x="451" y="393" width="49" height="32"/>
</element>
<element name="label86" ref="label_86">
- <bounds x="629" y="498" width="56" height="16">
- </bounds>
+ <bounds x="629" y="498" width="56" height="16"/>
</element>
<element name="label122" ref="label_122">
- <bounds x="269" y="773" width="155" height="14">
- </bounds>
+ <bounds x="269" y="773" width="155" height="14"/>
</element>
<element name="label123" ref="label_123">
- <bounds x="165" y="644" width="29" height="32">
- </bounds>
+ <bounds x="165" y="644" width="29" height="32"/>
</element>
<element name="label124" ref="label_124">
- <bounds x="452" y="644" width="29" height="32">
- </bounds>
+ <bounds x="452" y="644" width="29" height="32"/>
</element>
<element name="label146" ref="label_146">
- <bounds x="754" y="400" width="56" height="32">
- </bounds>
+ <bounds x="754" y="400" width="56" height="32"/>
</element>
<element name="label152" ref="label_152">
- <bounds x="585" y="401" width="69" height="32">
- </bounds>
+ <bounds x="585" y="401" width="69" height="32"/>
</element>
<element name="label158" ref="label_158">
- <bounds x="291" y="387" width="64" height="19">
- </bounds>
+ <bounds x="291" y="387" width="64" height="19"/>
</element>
<element name="label159" ref="label_159">
- <bounds x="141" y="308" width="51" height="32">
- </bounds>
+ <bounds x="141" y="308" width="51" height="32"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/j6wizardd.lay b/src/mame/layout/j6wizardd.lay
index 4e33917dea7..974d6d4e6cf 100644
--- a/src/mame/layout/j6wizardd.lay
+++ b/src/mame/layout/j6wizardd.lay
@@ -2190,333 +2190,263 @@
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Bell">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Melon">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Grapes">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x JPM">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_120_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_120_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Single Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Double Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Triple Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_126_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_126_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Wizard">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_110_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_110_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Mixed Bar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="3x Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_169">
<text string="&#xA3;10.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_170">
<text string="&#xA3;7.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_171">
<text string="&#xA3;6.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_172">
<text string="&#xA3;5.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_173">
<text string="&#xA3;4.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_174">
<text string="&#xA3;3.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_175">
<text string="&#xA3;2.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_176">
<text string="&#xA3;1.60">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_177">
<text string="&#xA3;1.20">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_178">
<text string="&#xA3;1.00">
<color red="1.0" green="1.0" blue="1.0"/>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
@@ -3307,130 +3237,99 @@
<param name="x" start="88" increment="17" />
<element name="vfd~i~" ref="vfd0">
- <bounds x="~x~" y="256" width="15" height="30">
- </bounds>
+ <bounds x="~x~" y="256" width="15" height="30"/>
</element>
</repeat>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="437" y="237" width="82" height="32">
- </bounds>
+ <bounds x="437" y="237" width="82" height="32"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="439" y="239" width="78" height="28">
- </bounds>
+ <bounds x="439" y="239" width="78" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="437" y="266" width="82" height="32">
- </bounds>
+ <bounds x="437" y="266" width="82" height="32"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="439" y="268" width="78" height="28">
- </bounds>
+ <bounds x="439" y="268" width="78" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="437" y="295" width="82" height="32">
- </bounds>
+ <bounds x="437" y="295" width="82" height="32"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="439" y="297" width="78" height="28">
- </bounds>
+ <bounds x="439" y="297" width="78" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="437" y="208" width="82" height="32">
- </bounds>
+ <bounds x="437" y="208" width="82" height="32"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="439" y="210" width="78" height="28">
- </bounds>
+ <bounds x="439" y="210" width="78" height="28"/>
</element>
<element name="lamp120" ref="lamp_120_1_border" state="0">
- <bounds x="437" y="179" width="82" height="32">
- </bounds>
+ <bounds x="437" y="179" width="82" height="32"/>
</element>
<element name="lamp120" ref="lamp_120_1" state="0">
- <bounds x="439" y="181" width="78" height="28">
- </bounds>
+ <bounds x="439" y="181" width="78" height="28"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="437" y="150" width="82" height="32">
- </bounds>
+ <bounds x="437" y="150" width="82" height="32"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="439" y="152" width="78" height="28">
- </bounds>
+ <bounds x="439" y="152" width="78" height="28"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="437" y="121" width="82" height="32">
- </bounds>
+ <bounds x="437" y="121" width="82" height="32"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="439" y="123" width="78" height="28">
- </bounds>
+ <bounds x="439" y="123" width="78" height="28"/>
</element>
<element name="lamp126" ref="lamp_126_1_border" state="0">
- <bounds x="437" y="92" width="82" height="32">
- </bounds>
+ <bounds x="437" y="92" width="82" height="32"/>
</element>
<element name="lamp126" ref="lamp_126_1" state="0">
- <bounds x="439" y="94" width="78" height="28">
- </bounds>
+ <bounds x="439" y="94" width="78" height="28"/>
</element>
<element name="lamp110" ref="lamp_110_1_border" state="0">
- <bounds x="437" y="324" width="82" height="32">
- </bounds>
+ <bounds x="437" y="324" width="82" height="32"/>
</element>
<element name="lamp110" ref="lamp_110_1" state="0">
- <bounds x="439" y="326" width="78" height="28">
- </bounds>
+ <bounds x="439" y="326" width="78" height="28"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="437" y="353" width="82" height="32">
- </bounds>
+ <bounds x="437" y="353" width="82" height="32"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="439" y="355" width="78" height="28">
- </bounds>
+ <bounds x="439" y="355" width="78" height="28"/>
</element>
<element name="label169" ref="label_169">
- <bounds x="524" y="100" width="40" height="19">
- </bounds>
+ <bounds x="524" y="100" width="40" height="19"/>
</element>
<element name="label170" ref="label_170">
- <bounds x="524" y="127" width="40" height="19">
- </bounds>
+ <bounds x="524" y="127" width="40" height="19"/>
</element>
<element name="label171" ref="label_171">
- <bounds x="524" y="157" width="40" height="19">
- </bounds>
+ <bounds x="524" y="157" width="40" height="19"/>
</element>
<element name="label172" ref="label_172">
- <bounds x="524" y="186" width="40" height="19">
- </bounds>
+ <bounds x="524" y="186" width="40" height="19"/>
</element>
<element name="label173" ref="label_173">
- <bounds x="524" y="215" width="40" height="19">
- </bounds>
+ <bounds x="524" y="215" width="40" height="19"/>
</element>
<element name="label174" ref="label_174">
- <bounds x="524" y="245" width="40" height="19">
- </bounds>
+ <bounds x="524" y="245" width="40" height="19"/>
</element>
<element name="label175" ref="label_175">
- <bounds x="524" y="273" width="40" height="19">
- </bounds>
+ <bounds x="524" y="273" width="40" height="19"/>
</element>
<element name="label176" ref="label_176">
- <bounds x="524" y="302" width="40" height="19">
- </bounds>
+ <bounds x="524" y="302" width="40" height="19"/>
</element>
<element name="label177" ref="label_177">
- <bounds x="524" y="332" width="40" height="19">
- </bounds>
+ <bounds x="524" y="332" width="40" height="19"/>
</element>
<element name="label178" ref="label_178">
- <bounds x="524" y="360" width="40" height="19">
- </bounds>
+ <bounds x="524" y="360" width="40" height="19"/>
</element>
</view>
diff --git a/src/mame/layout/jpmimpct.lay b/src/mame/layout/jpmimpct.lay
index 087beaa7905..433baf98fb0 100644
--- a/src/mame/layout/jpmimpct.lay
+++ b/src/mame/layout/jpmimpct.lay
@@ -19,15 +19,15 @@ license:CC0
</element>
<element name="Steppers" defstate="0">
<simplecounter maxstate="999" digits="3">
- <color red="1.0" green="1.0" blue="1.0" />
- <bounds x="0" y="0" width="1" height="1" />
+ <color red="1.0" green="1.0" blue="1.0" />
+ <bounds x="0" y="0" width="1" height="1" />
</simplecounter>
</element>
<element name="vfd0">
- <led16segsc>
+ <led16segsc>
<color red="0" green="0.6" blue="1.0" />
- </led16segsc>
+ </led16segsc>
</element>
<view name="AWP Simulated Video (No Artwork)">
@@ -36,8 +36,8 @@ license:CC0
<param name="i" start="0" increment="1" />
<element name="vfd~i~" ref="vfd0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
<bounds x="~x~" y="200" width="9" height="17" />
</element>
</repeat>
@@ -67,8 +67,8 @@ license:CC0
<param name="i" start="0" increment="1" />
<element name="vfd~i~" ref="vfd0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
<bounds x="~x~" y="200" width="9" height="17" />
</element>
</repeat>
diff --git a/src/mame/layout/jpmsys5.lay b/src/mame/layout/jpmsys5.lay
index 6bd47995a83..b8e51a1d088 100644
--- a/src/mame/layout/jpmsys5.lay
+++ b/src/mame/layout/jpmsys5.lay
@@ -19,15 +19,15 @@ license:CC0
</element>
<element name="Steppers" defstate="0">
<simplecounter maxstate="999" digits="3">
- <color red="1.0" green="1.0" blue="1.0" />
- <bounds x="0" y="0" width="1" height="1" />
+ <color red="1.0" green="1.0" blue="1.0" />
+ <bounds x="0" y="0" width="1" height="1" />
</simplecounter>
</element>
<element name="vfd0">
- <led16segsc>
+ <led16segsc>
<color red="0" green="0.6" blue="1.0" />
- </led16segsc>
+ </led16segsc>
</element>
<element name="digit" defstate="0">
@@ -42,8 +42,8 @@ license:CC0
<param name="i" start="0" increment="1" />
<element name="vfd~i~" ref="vfd0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
<bounds x="~x~" y="200" width="9" height="17" />
</element>
</repeat>
@@ -87,11 +87,10 @@ license:CC0
<param name="i" start="0" increment="1" />
<element name="vfd~i~" ref="vfd0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
<bounds x="~x~" y="200" width="9" height="17" />
</element>
</repeat>
</view>
</mamelayout>
-
diff --git a/src/mame/layout/m4actbnk.lay b/src/mame/layout/m4actbnk.lay
index 3be41a2757e..9ed5a749686 100644
--- a/src/mame/layout/m4actbnk.lay
+++ b/src/mame/layout/m4actbnk.lay
@@ -8,3115 +8,2384 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="B">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_49_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_49_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="N">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_48_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_48_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="K">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_50_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_50_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_19_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_19_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_27_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_27_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_47_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_47_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_46_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_46_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_45_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_45_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_39_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_39_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_38_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_38_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_37_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_37_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_36_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_36_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_44_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_44_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ACTION NUDGE 8 ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_43_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_43_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="N">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_35_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_35_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="T">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="I">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_23_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_23_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="8 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_15_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_15_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="4 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_14_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_14_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="5 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_13_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_13_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="6 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_12_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_12_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="7 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_7_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_7_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="3 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_6_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_6_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="2 SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_5_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_5_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="1 SUPER NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_28_1_border" defstate="0">
<rect state="1">
- <color red="0.48" green="0.19" blue="0.06">
- </color>
+ <color red="0.48" green="0.19" blue="0.06"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.02">
- </color>
+ <color red="0.12" green="0.05" blue="0.02"/>
</rect>
</element>
<element name="lamp_28_1" defstate="0">
<rect state="1">
- <color red="0.97" green="0.38" blue="0.13">
- </color>
+ <color red="0.97" green="0.38" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.24" green="0.09" blue="0.03">
- </color>
+ <color red="0.24" green="0.09" blue="0.03"/>
</rect>
<text string="REPEAT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_29_1_border" defstate="0">
<rect state="1">
- <color red="0.48" green="0.19" blue="0.06">
- </color>
+ <color red="0.48" green="0.19" blue="0.06"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.02">
- </color>
+ <color red="0.12" green="0.05" blue="0.02"/>
</rect>
</element>
<element name="lamp_29_1" defstate="0">
<rect state="1">
- <color red="0.97" green="0.38" blue="0.13">
- </color>
+ <color red="0.97" green="0.38" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.24" green="0.09" blue="0.03">
- </color>
+ <color red="0.24" green="0.09" blue="0.03"/>
</rect>
<text string="NO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_1_border" defstate="0">
<rect state="1">
- <color red="0.48" green="0.19" blue="0.06">
- </color>
+ <color red="0.48" green="0.19" blue="0.06"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.02">
- </color>
+ <color red="0.12" green="0.05" blue="0.02"/>
</rect>
</element>
<element name="lamp_123_1" defstate="0">
<rect state="1">
- <color red="0.97" green="0.38" blue="0.13">
- </color>
+ <color red="0.97" green="0.38" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.24" green="0.09" blue="0.03">
- </color>
+ <color red="0.24" green="0.09" blue="0.03"/>
</rect>
<text string="YES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_4_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_4_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="BANK OPEN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_1_border" defstate="0">
<rect state="1">
- <color red="0.10" green="0.07" blue="0.43">
- </color>
+ <color red="0.10" green="0.07" blue="0.43"/>
</rect>
<rect state="0">
- <color red="0.02" green="0.02" blue="0.11">
- </color>
+ <color red="0.02" green="0.02" blue="0.11"/>
</rect>
</element>
<element name="lamp_53_1" defstate="0">
<rect state="1">
- <color red="0.21" green="0.14" blue="0.86">
- </color>
+ <color red="0.21" green="0.14" blue="0.86"/>
</rect>
<rect state="0">
- <color red="0.05" green="0.03" blue="0.22">
- </color>
+ <color red="0.05" green="0.03" blue="0.22"/>
</rect>
<text string="TAKE THEM OR LEAVE THEM">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.00">
- </color>
+ <color red="0.06" green="0.06" blue="0.00"/>
</disk>
</element>
<element name="lamp_66_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.00">
- </color>
+ <color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_67_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.00">
- </color>
+ <color red="0.06" green="0.06" blue="0.00"/>
</disk>
</element>
<element name="lamp_67_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.00">
- </color>
+ <color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.00">
- </color>
+ <color red="0.06" green="0.06" blue="0.00"/>
</disk>
</element>
<element name="lamp_64_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.00">
- </color>
+ <color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_65_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.00">
- </color>
+ <color red="0.06" green="0.06" blue="0.00"/>
</disk>
</element>
<element name="lamp_65_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.00">
- </color>
+ <color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_105_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_105_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_104_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_107_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_107_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_106_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_106_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_74_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_74_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_75_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_75_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_82_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_83_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_90_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_90_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_91_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_91_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_72_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_72_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_73_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_73_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_80_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_81_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_88_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_89_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_89_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_98_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_99_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_97_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<disk state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</disk>
</element>
<element name="lamp_96_1" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</disk>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</rect>
<text string="EQUALIZER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</rect>
<text string="PLUS CASH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</rect>
<text string="PLUS COIN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</rect>
<text string="CASH GRABBER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_120_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_120_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;4 CASH REPEAT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_121_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.06">
- </color>
+ <color red="0.06" green="0.06" blue="0.06"/>
</rect>
</element>
<element name="lamp_121_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.13">
- </color>
+ <color red="0.13" green="0.13" blue="0.13"/>
</rect>
<text string="SUPER NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_161_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_161">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_162_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_162">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="50P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_163_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_163">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="20P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_164_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_164">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="10P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_165_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_165">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="20P TOKEN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_166_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_166">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="GAMBLE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_167_border">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="colour_button_167">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE FOR">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUMBERS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_168_border">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="colour_button_168">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="FOR FRUI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_169_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_169">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_170_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_170">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_171_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_171">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_172_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_172">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string=" COLLECT ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="DoubleBar,Blue7(1),SingleBar,CashRepeater,TripleBar(2),Pound,JackpotRepeater,SingleBar,DoubleBar,Pound,Blue7(2),SingleBar,Pound,Red7,TripleBar(!),CashRepeater">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,SingleBar(3),JackpotRepeater,DoubleBar(1),Pound,CashRepeater,TripleBar(!),DoubleBar,Pound,JackpotRepeater,TripleBar,Pound(2),Red7,SingleBar,Blue7(1),Pound">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="SingleBar(2),TripleBar,Blue7,Pound(R),Red7,Pound,CashRepeater,SingleBar,Blue7,Pound(1),TripleBar,CashRepeater,SingleBar(2),JackpotRepeater,DoubleBar(?),Pound">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="vfd0">
<led16segsc>
- <color red="0.0" green="1.0" blue="1.0">
- </color>
+ <color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_38">
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_39">
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_40">
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_41">
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_42">
<text string="&#xA3;3.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_43">
<text string="&#xA3;4.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_62">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_66">
<text string="&#xA3;8.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_152">
<text string="&#xA3;8+REPEAT CHANCE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_159">
<text string="CASH BANK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_160">
<text string="NUDGE POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="980" height="661">
- </bounds>
+ <bounds x="0" y="0" width="980" height="661"/>
</element>
<element ref="reel_background">
- <bounds x="164" y="418" width="80" height="140">
- </bounds>
+ <bounds x="164" y="418" width="80" height="140"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="164.0000" y="418.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="164.0000" y="418.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="167.3333" y="419.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="167.3333" y="419.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="170.6667" y="421.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="170.6667" y="421.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="174.0000" y="423.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="174.0000" y="423.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="177.3333" y="425.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="177.3333" y="425.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="180.6667" y="427.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="180.6667" y="427.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="164.0000" y="464.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="164.0000" y="464.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="167.3333" y="466.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="167.3333" y="466.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="170.6667" y="468.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="170.6667" y="468.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="174.0000" y="470.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="174.0000" y="470.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="177.3333" y="472.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="177.3333" y="472.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="180.6667" y="474.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="180.6667" y="474.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="164.0000" y="511.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="164.0000" y="511.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="167.3333" y="513.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="167.3333" y="513.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="170.6667" y="515.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="170.6667" y="515.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="174.0000" y="517.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="174.0000" y="517.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="177.3333" y="519.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="177.3333" y="519.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="180.6667" y="521.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="180.6667" y="521.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="164" y="418" width="80" height="140">
- </bounds>
+ <bounds x="164" y="418" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="254" y="418" width="80" height="140">
- </bounds>
+ <bounds x="254" y="418" width="80" height="140"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="254.0000" y="418.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="254.0000" y="418.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="257.3333" y="419.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="257.3333" y="419.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="260.6667" y="421.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="260.6667" y="421.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="264.0000" y="423.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="264.0000" y="423.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="267.3333" y="425.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="267.3333" y="425.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="270.6667" y="427.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="270.6667" y="427.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="254.0000" y="464.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="254.0000" y="464.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="257.3333" y="466.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="257.3333" y="466.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="260.6667" y="468.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="260.6667" y="468.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="264.0000" y="470.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="264.0000" y="470.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="267.3333" y="472.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="267.3333" y="472.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="270.6667" y="474.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="270.6667" y="474.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="254.0000" y="511.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="254.0000" y="511.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="257.3333" y="513.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="257.3333" y="513.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="260.6667" y="515.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="260.6667" y="515.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="264.0000" y="517.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="264.0000" y="517.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="267.3333" y="519.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="267.3333" y="519.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="270.6667" y="521.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="270.6667" y="521.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="254" y="418" width="80" height="140">
- </bounds>
+ <bounds x="254" y="418" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="345" y="418" width="80" height="140">
- </bounds>
+ <bounds x="345" y="418" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="345.0000" y="418.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="345.0000" y="418.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="348.3333" y="419.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="348.3333" y="419.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="351.6667" y="421.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="351.6667" y="421.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="355.0000" y="423.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="355.0000" y="423.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="358.3333" y="425.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="358.3333" y="425.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="361.6667" y="427.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="361.6667" y="427.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="345.0000" y="464.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="345.0000" y="464.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="348.3333" y="466.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="348.3333" y="466.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="351.6667" y="468.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="351.6667" y="468.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="355.0000" y="470.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="355.0000" y="470.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="358.3333" y="472.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="358.3333" y="472.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="361.6667" y="474.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="361.6667" y="474.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="345.0000" y="511.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="345.0000" y="511.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="348.3333" y="513.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="348.3333" y="513.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="351.6667" y="515.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="351.6667" y="515.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="355.0000" y="517.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="355.0000" y="517.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="358.3333" y="519.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="358.3333" y="519.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="361.6667" y="521.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="361.6667" y="521.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="345" y="418" width="80" height="140">
- </bounds>
+ <bounds x="345" y="418" width="80" height="140"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="529" y="337" width="32" height="67">
- </bounds>
+ <bounds x="529" y="337" width="32" height="67"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="531" y="339" width="28" height="63">
- </bounds>
+ <bounds x="531" y="339" width="28" height="63"/>
</element>
<element name="lamp49" ref="lamp_49_1_border" state="0">
- <bounds x="636" y="337" width="32" height="67">
- </bounds>
+ <bounds x="636" y="337" width="32" height="67"/>
</element>
<element name="lamp49" ref="lamp_49_1" state="0">
- <bounds x="638" y="339" width="28" height="63">
- </bounds>
+ <bounds x="638" y="339" width="28" height="63"/>
</element>
<element name="lamp48" ref="lamp_48_1_border" state="0">
- <bounds x="690" y="337" width="32" height="67">
- </bounds>
+ <bounds x="690" y="337" width="32" height="67"/>
</element>
<element name="lamp48" ref="lamp_48_1" state="0">
- <bounds x="692" y="339" width="28" height="63">
- </bounds>
+ <bounds x="692" y="339" width="28" height="63"/>
</element>
<element name="lamp50" ref="lamp_50_1_border" state="0">
- <bounds x="584" y="337" width="32" height="67">
- </bounds>
+ <bounds x="584" y="337" width="32" height="67"/>
</element>
<element name="lamp50" ref="lamp_50_1" state="0">
- <bounds x="586" y="339" width="28" height="63">
- </bounds>
+ <bounds x="586" y="339" width="28" height="63"/>
</element>
<element name="lamp19" ref="lamp_19_1_border" state="0">
- <bounds x="130" y="338" width="32" height="67">
- </bounds>
+ <bounds x="130" y="338" width="32" height="67"/>
</element>
<element name="lamp19" ref="lamp_19_1" state="0">
- <bounds x="132" y="340" width="28" height="63">
- </bounds>
+ <bounds x="132" y="340" width="28" height="63"/>
</element>
<element name="lamp27" ref="lamp_27_1_border" state="0">
- <bounds x="182" y="338" width="32" height="67">
- </bounds>
+ <bounds x="182" y="338" width="32" height="67"/>
</element>
<element name="lamp27" ref="lamp_27_1" state="0">
- <bounds x="184" y="340" width="28" height="63">
- </bounds>
+ <bounds x="184" y="340" width="28" height="63"/>
</element>
<element name="lamp47" ref="lamp_47_1_border" state="0">
- <bounds x="441" y="171" width="72" height="32">
- </bounds>
+ <bounds x="441" y="171" width="72" height="32"/>
</element>
<element name="lamp47" ref="lamp_47_1" state="0">
- <bounds x="443" y="173" width="68" height="28">
- </bounds>
+ <bounds x="443" y="173" width="68" height="28"/>
</element>
<element name="lamp46" ref="lamp_46_1_border" state="0">
- <bounds x="441" y="140" width="72" height="32">
- </bounds>
+ <bounds x="441" y="140" width="72" height="32"/>
</element>
<element name="lamp46" ref="lamp_46_1" state="0">
- <bounds x="443" y="142" width="68" height="28">
- </bounds>
+ <bounds x="443" y="142" width="68" height="28"/>
</element>
<element name="lamp45" ref="lamp_45_1_border" state="0">
- <bounds x="441" y="109" width="72" height="32">
- </bounds>
+ <bounds x="441" y="109" width="72" height="32"/>
</element>
<element name="lamp45" ref="lamp_45_1" state="0">
- <bounds x="443" y="111" width="68" height="28">
- </bounds>
+ <bounds x="443" y="111" width="68" height="28"/>
</element>
<element name="lamp39" ref="lamp_39_1_border" state="0">
- <bounds x="441" y="202" width="72" height="32">
- </bounds>
+ <bounds x="441" y="202" width="72" height="32"/>
</element>
<element name="lamp39" ref="lamp_39_1" state="0">
- <bounds x="443" y="204" width="68" height="28">
- </bounds>
+ <bounds x="443" y="204" width="68" height="28"/>
</element>
<element name="lamp38" ref="lamp_38_1_border" state="0">
- <bounds x="441" y="233" width="72" height="32">
- </bounds>
+ <bounds x="441" y="233" width="72" height="32"/>
</element>
<element name="lamp38" ref="lamp_38_1" state="0">
- <bounds x="443" y="235" width="68" height="28">
- </bounds>
+ <bounds x="443" y="235" width="68" height="28"/>
</element>
<element name="lamp37" ref="lamp_37_1_border" state="0">
- <bounds x="441" y="264" width="72" height="32">
- </bounds>
+ <bounds x="441" y="264" width="72" height="32"/>
</element>
<element name="lamp37" ref="lamp_37_1" state="0">
- <bounds x="443" y="266" width="68" height="28">
- </bounds>
+ <bounds x="443" y="266" width="68" height="28"/>
</element>
<element name="lamp36" ref="lamp_36_1_border" state="0">
- <bounds x="441" y="295" width="72" height="32">
- </bounds>
+ <bounds x="441" y="295" width="72" height="32"/>
</element>
<element name="lamp36" ref="lamp_36_1" state="0">
- <bounds x="443" y="297" width="68" height="28">
- </bounds>
+ <bounds x="443" y="297" width="68" height="28"/>
</element>
<element name="lamp44" ref="lamp_44_1_border" state="0">
- <bounds x="441" y="78" width="72" height="32">
- </bounds>
+ <bounds x="441" y="78" width="72" height="32"/>
</element>
<element name="lamp44" ref="lamp_44_1" state="0">
- <bounds x="443" y="80" width="68" height="28">
- </bounds>
+ <bounds x="443" y="80" width="68" height="28"/>
</element>
<element name="lamp43" ref="lamp_43_1_border" state="0">
- <bounds x="398" y="337" width="32" height="67">
- </bounds>
+ <bounds x="398" y="337" width="32" height="67"/>
</element>
<element name="lamp43" ref="lamp_43_1" state="0">
- <bounds x="400" y="339" width="28" height="63">
- </bounds>
+ <bounds x="400" y="339" width="28" height="63"/>
</element>
<element name="lamp35" ref="lamp_35_1_border" state="0">
- <bounds x="345" y="337" width="32" height="67">
- </bounds>
+ <bounds x="345" y="337" width="32" height="67"/>
</element>
<element name="lamp35" ref="lamp_35_1" state="0">
- <bounds x="347" y="339" width="28" height="63">
- </bounds>
+ <bounds x="347" y="339" width="28" height="63"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="234" y="337" width="32" height="67">
- </bounds>
+ <bounds x="234" y="337" width="32" height="67"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="236" y="339" width="28" height="63">
- </bounds>
+ <bounds x="236" y="339" width="28" height="63"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="288" y="337" width="32" height="67">
- </bounds>
+ <bounds x="288" y="337" width="32" height="67"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="290" y="339" width="28" height="63">
- </bounds>
+ <bounds x="290" y="339" width="28" height="63"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
- <bounds x="587" y="74" width="60" height="60">
- </bounds>
+ <bounds x="587" y="74" width="60" height="60"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
- <bounds x="589" y="76" width="56" height="56">
- </bounds>
+ <bounds x="589" y="76" width="56" height="56"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
- <bounds x="587" y="197" width="60" height="60">
- </bounds>
+ <bounds x="587" y="197" width="60" height="60"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
- <bounds x="589" y="199" width="56" height="56">
- </bounds>
+ <bounds x="589" y="199" width="56" height="56"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
- <bounds x="587" y="136" width="60" height="60">
- </bounds>
+ <bounds x="587" y="136" width="60" height="60"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
- <bounds x="589" y="138" width="56" height="56">
- </bounds>
+ <bounds x="589" y="138" width="56" height="56"/>
</element>
<element name="lamp13" ref="lamp_13_1_border" state="0">
- <bounds x="651" y="136" width="60" height="60">
- </bounds>
+ <bounds x="651" y="136" width="60" height="60"/>
</element>
<element name="lamp13" ref="lamp_13_1" state="0">
- <bounds x="653" y="138" width="56" height="56">
- </bounds>
+ <bounds x="653" y="138" width="56" height="56"/>
</element>
<element name="lamp12" ref="lamp_12_1_border" state="0">
- <bounds x="651" y="74" width="60" height="60">
- </bounds>
+ <bounds x="651" y="74" width="60" height="60"/>
</element>
<element name="lamp12" ref="lamp_12_1" state="0">
- <bounds x="653" y="76" width="56" height="56">
- </bounds>
+ <bounds x="653" y="76" width="56" height="56"/>
</element>
<element name="lamp7" ref="lamp_7_1_border" state="0">
- <bounds x="651" y="197" width="60" height="60">
- </bounds>
+ <bounds x="651" y="197" width="60" height="60"/>
</element>
<element name="lamp7" ref="lamp_7_1" state="0">
- <bounds x="653" y="199" width="56" height="56">
- </bounds>
+ <bounds x="653" y="199" width="56" height="56"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
- <bounds x="651" y="259" width="60" height="60">
- </bounds>
+ <bounds x="651" y="259" width="60" height="60"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
- <bounds x="653" y="261" width="56" height="56">
- </bounds>
+ <bounds x="653" y="261" width="56" height="56"/>
</element>
<element name="lamp5" ref="lamp_5_1_border" state="0">
- <bounds x="587" y="259" width="60" height="60">
- </bounds>
+ <bounds x="587" y="259" width="60" height="60"/>
</element>
<element name="lamp5" ref="lamp_5_1" state="0">
- <bounds x="589" y="261" width="56" height="56">
- </bounds>
+ <bounds x="589" y="261" width="56" height="56"/>
</element>
<element name="lamp28" ref="lamp_28_1_border" state="0">
- <bounds x="51" y="475" width="72" height="27">
- </bounds>
+ <bounds x="51" y="475" width="72" height="27"/>
</element>
<element name="lamp28" ref="lamp_28_1" state="0">
- <bounds x="53" y="477" width="68" height="23">
- </bounds>
+ <bounds x="53" y="477" width="68" height="23"/>
</element>
<element name="lamp29" ref="lamp_29_1_border" state="0">
- <bounds x="67" y="512" width="42" height="27">
- </bounds>
+ <bounds x="67" y="512" width="42" height="27"/>
</element>
<element name="lamp29" ref="lamp_29_1" state="0">
- <bounds x="69" y="514" width="38" height="23">
- </bounds>
+ <bounds x="69" y="514" width="38" height="23"/>
</element>
<element name="lamp123" ref="lamp_123_1_border" state="0">
- <bounds x="67" y="435" width="42" height="27">
- </bounds>
+ <bounds x="67" y="435" width="42" height="27"/>
</element>
<element name="lamp123" ref="lamp_123_1" state="0">
- <bounds x="69" y="437" width="38" height="23">
- </bounds>
+ <bounds x="69" y="437" width="38" height="23"/>
</element>
<element name="lamp4" ref="lamp_4_1_border" state="0">
- <bounds x="447" y="335" width="62" height="37">
- </bounds>
+ <bounds x="447" y="335" width="62" height="37"/>
</element>
<element name="lamp4" ref="lamp_4_1" state="0">
- <bounds x="449" y="337" width="58" height="33">
- </bounds>
+ <bounds x="449" y="337" width="58" height="33"/>
</element>
<element name="lamp53" ref="lamp_53_1_border" state="0">
- <bounds x="435" y="15" width="82" height="52">
- </bounds>
+ <bounds x="435" y="15" width="82" height="52"/>
</element>
<element name="lamp53" ref="lamp_53_1" state="0">
- <bounds x="437" y="17" width="78" height="48">
- </bounds>
+ <bounds x="437" y="17" width="78" height="48"/>
</element>
<element name="lamp66" ref="lamp_66_1_border" state="0">
- <bounds x="282" y="77" width="37" height="37">
- </bounds>
+ <bounds x="282" y="77" width="37" height="37"/>
</element>
<element name="lamp66" ref="lamp_66_1" state="0">
- <bounds x="284" y="79" width="33" height="33">
- </bounds>
+ <bounds x="284" y="79" width="33" height="33"/>
</element>
<element name="lamp67" ref="lamp_67_1_border" state="0">
- <bounds x="325" y="77" width="37" height="37">
- </bounds>
+ <bounds x="325" y="77" width="37" height="37"/>
</element>
<element name="lamp67" ref="lamp_67_1" state="0">
- <bounds x="327" y="79" width="33" height="33">
- </bounds>
+ <bounds x="327" y="79" width="33" height="33"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="195" y="77" width="37" height="37">
- </bounds>
+ <bounds x="195" y="77" width="37" height="37"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="197" y="79" width="33" height="33">
- </bounds>
+ <bounds x="197" y="79" width="33" height="33"/>
</element>
<element name="lamp65" ref="lamp_65_1_border" state="0">
- <bounds x="239" y="77" width="37" height="37">
- </bounds>
+ <bounds x="239" y="77" width="37" height="37"/>
</element>
<element name="lamp65" ref="lamp_65_1" state="0">
- <bounds x="241" y="79" width="33" height="33">
- </bounds>
+ <bounds x="241" y="79" width="33" height="33"/>
</element>
<element name="lamp105" ref="lamp_105_1_border" state="0">
- <bounds x="239" y="278" width="37" height="37">
- </bounds>
+ <bounds x="239" y="278" width="37" height="37"/>
</element>
<element name="lamp105" ref="lamp_105_1" state="0">
- <bounds x="241" y="280" width="33" height="33">
- </bounds>
+ <bounds x="241" y="280" width="33" height="33"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="195" y="278" width="37" height="37">
- </bounds>
+ <bounds x="195" y="278" width="37" height="37"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="197" y="280" width="33" height="33">
- </bounds>
+ <bounds x="197" y="280" width="33" height="33"/>
</element>
<element name="lamp107" ref="lamp_107_1_border" state="0">
- <bounds x="325" y="278" width="37" height="37">
- </bounds>
+ <bounds x="325" y="278" width="37" height="37"/>
</element>
<element name="lamp107" ref="lamp_107_1" state="0">
- <bounds x="327" y="280" width="33" height="33">
- </bounds>
+ <bounds x="327" y="280" width="33" height="33"/>
</element>
<element name="lamp106" ref="lamp_106_1_border" state="0">
- <bounds x="282" y="278" width="37" height="37">
- </bounds>
+ <bounds x="282" y="278" width="37" height="37"/>
</element>
<element name="lamp106" ref="lamp_106_1" state="0">
- <bounds x="284" y="280" width="33" height="33">
- </bounds>
+ <bounds x="284" y="280" width="33" height="33"/>
</element>
<element name="lamp74" ref="lamp_74_1_border" state="0">
- <bounds x="282" y="117" width="37" height="37">
- </bounds>
+ <bounds x="282" y="117" width="37" height="37"/>
</element>
<element name="lamp74" ref="lamp_74_1" state="0">
- <bounds x="284" y="119" width="33" height="33">
- </bounds>
+ <bounds x="284" y="119" width="33" height="33"/>
</element>
<element name="lamp75" ref="lamp_75_1_border" state="0">
- <bounds x="325" y="117" width="37" height="37">
- </bounds>
+ <bounds x="325" y="117" width="37" height="37"/>
</element>
<element name="lamp75" ref="lamp_75_1" state="0">
- <bounds x="327" y="119" width="33" height="33">
- </bounds>
+ <bounds x="327" y="119" width="33" height="33"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="282" y="157" width="37" height="37">
- </bounds>
+ <bounds x="282" y="157" width="37" height="37"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="284" y="159" width="33" height="33">
- </bounds>
+ <bounds x="284" y="159" width="33" height="33"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="325" y="157" width="37" height="37">
- </bounds>
+ <bounds x="325" y="157" width="37" height="37"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="327" y="159" width="33" height="33">
- </bounds>
+ <bounds x="327" y="159" width="33" height="33"/>
</element>
<element name="lamp90" ref="lamp_90_1_border" state="0">
- <bounds x="282" y="197" width="37" height="37">
- </bounds>
+ <bounds x="282" y="197" width="37" height="37"/>
</element>
<element name="lamp90" ref="lamp_90_1" state="0">
- <bounds x="284" y="199" width="33" height="33">
- </bounds>
+ <bounds x="284" y="199" width="33" height="33"/>
</element>
<element name="lamp91" ref="lamp_91_1_border" state="0">
- <bounds x="325" y="197" width="37" height="37">
- </bounds>
+ <bounds x="325" y="197" width="37" height="37"/>
</element>
<element name="lamp91" ref="lamp_91_1" state="0">
- <bounds x="327" y="199" width="33" height="33">
- </bounds>
+ <bounds x="327" y="199" width="33" height="33"/>
</element>
<element name="lamp72" ref="lamp_72_1_border" state="0">
- <bounds x="195" y="117" width="37" height="37">
- </bounds>
+ <bounds x="195" y="117" width="37" height="37"/>
</element>
<element name="lamp72" ref="lamp_72_1" state="0">
- <bounds x="197" y="119" width="33" height="33">
- </bounds>
+ <bounds x="197" y="119" width="33" height="33"/>
</element>
<element name="lamp73" ref="lamp_73_1_border" state="0">
- <bounds x="239" y="117" width="37" height="37">
- </bounds>
+ <bounds x="239" y="117" width="37" height="37"/>
</element>
<element name="lamp73" ref="lamp_73_1" state="0">
- <bounds x="241" y="119" width="33" height="33">
- </bounds>
+ <bounds x="241" y="119" width="33" height="33"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="195" y="157" width="37" height="37">
- </bounds>
+ <bounds x="195" y="157" width="37" height="37"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="197" y="159" width="33" height="33">
- </bounds>
+ <bounds x="197" y="159" width="33" height="33"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="239" y="157" width="37" height="37">
- </bounds>
+ <bounds x="239" y="157" width="37" height="37"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="241" y="159" width="33" height="33">
- </bounds>
+ <bounds x="241" y="159" width="33" height="33"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="195" y="197" width="37" height="37">
- </bounds>
+ <bounds x="195" y="197" width="37" height="37"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="197" y="199" width="33" height="33">
- </bounds>
+ <bounds x="197" y="199" width="33" height="33"/>
</element>
<element name="lamp89" ref="lamp_89_1_border" state="0">
- <bounds x="239" y="197" width="37" height="37">
- </bounds>
+ <bounds x="239" y="197" width="37" height="37"/>
</element>
<element name="lamp89" ref="lamp_89_1" state="0">
- <bounds x="241" y="199" width="33" height="33">
- </bounds>
+ <bounds x="241" y="199" width="33" height="33"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="282" y="237" width="37" height="37">
- </bounds>
+ <bounds x="282" y="237" width="37" height="37"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="284" y="239" width="33" height="33">
- </bounds>
+ <bounds x="284" y="239" width="33" height="33"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="325" y="237" width="37" height="37">
- </bounds>
+ <bounds x="325" y="237" width="37" height="37"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="327" y="239" width="33" height="33">
- </bounds>
+ <bounds x="327" y="239" width="33" height="33"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="239" y="237" width="37" height="37">
- </bounds>
+ <bounds x="239" y="237" width="37" height="37"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="241" y="239" width="33" height="33">
- </bounds>
+ <bounds x="241" y="239" width="33" height="33"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="195" y="238" width="37" height="37">
- </bounds>
+ <bounds x="195" y="238" width="37" height="37"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="197" y="240" width="33" height="33">
- </bounds>
+ <bounds x="197" y="240" width="33" height="33"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="765" y="57" width="107" height="47">
- </bounds>
+ <bounds x="765" y="57" width="107" height="47"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="767" y="59" width="103" height="43">
- </bounds>
+ <bounds x="767" y="59" width="103" height="43"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="765" y="287" width="107" height="47">
- </bounds>
+ <bounds x="765" y="287" width="107" height="47"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="767" y="289" width="103" height="43">
- </bounds>
+ <bounds x="767" y="289" width="103" height="43"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="765" y="195" width="107" height="47">
- </bounds>
+ <bounds x="765" y="195" width="107" height="47"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="767" y="197" width="103" height="43">
- </bounds>
+ <bounds x="767" y="197" width="103" height="43"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="765" y="241" width="107" height="47">
- </bounds>
+ <bounds x="765" y="241" width="107" height="47"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="767" y="243" width="103" height="43">
- </bounds>
+ <bounds x="767" y="243" width="103" height="43"/>
</element>
<element name="lamp120" ref="lamp_120_1_border" state="0">
- <bounds x="765" y="149" width="107" height="47">
- </bounds>
+ <bounds x="765" y="149" width="107" height="47"/>
</element>
<element name="lamp120" ref="lamp_120_1" state="0">
- <bounds x="767" y="151" width="103" height="43">
- </bounds>
+ <bounds x="767" y="151" width="103" height="43"/>
</element>
<element name="lamp121" ref="lamp_121_1_border" state="0">
- <bounds x="765" y="103" width="107" height="47">
- </bounds>
+ <bounds x="765" y="103" width="107" height="47"/>
</element>
<element name="lamp121" ref="lamp_121_1" state="0">
- <bounds x="767" y="105" width="103" height="43">
- </bounds>
+ <bounds x="767" y="105" width="103" height="43"/>
</element>
<element name="lamp-1" ref="colour_button_161_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="860" y="1" width="75" height="27">
- </bounds>
+ <bounds x="860" y="1" width="75" height="27"/>
</element>
<element name="lamp-1" ref="colour_button_161" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="862" y="3" width="71" height="23">
- </bounds>
+ <bounds x="862" y="3" width="71" height="23"/>
</element>
<element name="lamp-1" ref="colour_button_162_border" state="0" inputtag="AUX2" inputmask="0x40">
- <bounds x="789" y="1" width="75" height="27">
- </bounds>
+ <bounds x="789" y="1" width="75" height="27"/>
</element>
<element name="lamp-1" ref="colour_button_162" state="0" inputtag="AUX2" inputmask="0x40">
- <bounds x="791" y="3" width="71" height="23">
- </bounds>
+ <bounds x="791" y="3" width="71" height="23"/>
</element>
<element name="lamp-1" ref="colour_button_163_border" state="0" inputtag="AUX2" inputmask="0x20">
- <bounds x="819" y="25" width="75" height="27">
- </bounds>
+ <bounds x="819" y="25" width="75" height="27"/>
</element>
<element name="lamp-1" ref="colour_button_163" state="0" inputtag="AUX2" inputmask="0x20">
- <bounds x="821" y="27" width="71" height="23">
- </bounds>
+ <bounds x="821" y="27" width="71" height="23"/>
</element>
<element name="lamp-1" ref="colour_button_164_border" state="0" inputtag="AUX2" inputmask="0x10">
- <bounds x="748" y="25" width="75" height="27">
- </bounds>
+ <bounds x="748" y="25" width="75" height="27"/>
</element>
<element name="lamp-1" ref="colour_button_164" state="0" inputtag="AUX2" inputmask="0x10">
- <bounds x="750" y="27" width="71" height="23">
- </bounds>
+ <bounds x="750" y="27" width="71" height="23"/>
</element>
<element name="lamp-1" ref="colour_button_165_border" state="0" inputtag="DIL2" inputmask="0x08">
- <bounds x="718" y="1" width="75" height="27">
- </bounds>
+ <bounds x="718" y="1" width="75" height="27"/>
</element>
<element name="lamp-1" ref="colour_button_165" state="0" inputtag="DIL2" inputmask="0x08">
- <bounds x="720" y="3" width="71" height="23">
- </bounds>
+ <bounds x="720" y="3" width="71" height="23"/>
</element>
<element name="lamp41" ref="colour_button_166_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="839" y="626" width="87" height="57">
- </bounds>
+ <bounds x="839" y="626" width="87" height="57"/>
</element>
<element name="lamp41" ref="colour_button_166" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="841" y="628" width="83" height="53">
- </bounds>
+ <bounds x="841" y="628" width="83" height="53"/>
</element>
<element name="lamp40" ref="colour_button_167_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="702" y="642" width="97" height="37">
- </bounds>
+ <bounds x="702" y="642" width="97" height="37"/>
</element>
<element name="lamp40" ref="colour_button_167" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="704" y="644" width="93" height="33">
- </bounds>
+ <bounds x="704" y="644" width="93" height="33"/>
</element>
<element name="lamp34" ref="colour_button_168_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="549" y="642" width="97" height="37">
- </bounds>
+ <bounds x="549" y="642" width="97" height="37"/>
</element>
<element name="lamp34" ref="colour_button_168" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="551" y="644" width="93" height="33">
- </bounds>
+ <bounds x="551" y="644" width="93" height="33"/>
</element>
<element name="lamp33" ref="colour_button_169_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="352" y="645" width="77" height="32">
- </bounds>
+ <bounds x="352" y="645" width="77" height="32"/>
</element>
<element name="lamp33" ref="colour_button_169" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="354" y="647" width="73" height="28">
- </bounds>
+ <bounds x="354" y="647" width="73" height="28"/>
</element>
<element name="lamp32" ref="colour_button_170_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="262" y="645" width="77" height="32">
- </bounds>
+ <bounds x="262" y="645" width="77" height="32"/>
</element>
<element name="lamp32" ref="colour_button_170" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="264" y="647" width="73" height="28">
- </bounds>
+ <bounds x="264" y="647" width="73" height="28"/>
</element>
<element name="lamp26" ref="colour_button_171_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="171" y="645" width="77" height="32">
- </bounds>
+ <bounds x="171" y="645" width="77" height="32"/>
</element>
<element name="lamp26" ref="colour_button_171" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="173" y="647" width="73" height="28">
- </bounds>
+ <bounds x="173" y="647" width="73" height="28"/>
</element>
<element name="lamp25" ref="colour_button_172_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="31" y="641" width="75" height="37">
- </bounds>
+ <bounds x="31" y="641" width="75" height="37"/>
</element>
<element name="lamp25" ref="colour_button_172" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="33" y="643" width="71" height="33">
- </bounds>
+ <bounds x="33" y="643" width="71" height="33"/>
</element>
<element ref="vfd0_background">
- <bounds x="683" y="559" width="272" height="30">
- </bounds>
+ <bounds x="683" y="559" width="272" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
- <bounds x="683" y="559" width="17" height="30">
- </bounds>
+ <bounds x="683" y="559" width="17" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
- <bounds x="700" y="559" width="17" height="30">
- </bounds>
+ <bounds x="700" y="559" width="17" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
- <bounds x="717" y="559" width="17" height="30">
- </bounds>
+ <bounds x="717" y="559" width="17" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
- <bounds x="734" y="559" width="17" height="30">
- </bounds>
+ <bounds x="734" y="559" width="17" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
- <bounds x="751" y="559" width="17" height="30">
- </bounds>
+ <bounds x="751" y="559" width="17" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
- <bounds x="768" y="559" width="17" height="30">
- </bounds>
+ <bounds x="768" y="559" width="17" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
- <bounds x="785" y="559" width="17" height="30">
- </bounds>
+ <bounds x="785" y="559" width="17" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
- <bounds x="802" y="559" width="17" height="30">
- </bounds>
+ <bounds x="802" y="559" width="17" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
- <bounds x="819" y="559" width="17" height="30">
- </bounds>
+ <bounds x="819" y="559" width="17" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
- <bounds x="836" y="559" width="17" height="30">
- </bounds>
+ <bounds x="836" y="559" width="17" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
- <bounds x="853" y="559" width="17" height="30">
- </bounds>
+ <bounds x="853" y="559" width="17" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
- <bounds x="870" y="559" width="17" height="30">
- </bounds>
+ <bounds x="870" y="559" width="17" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
- <bounds x="887" y="559" width="17" height="30">
- </bounds>
+ <bounds x="887" y="559" width="17" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
- <bounds x="904" y="559" width="17" height="30">
- </bounds>
+ <bounds x="904" y="559" width="17" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
- <bounds x="921" y="559" width="17" height="30">
- </bounds>
+ <bounds x="921" y="559" width="17" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
- <bounds x="938" y="559" width="17" height="30">
- </bounds>
+ <bounds x="938" y="559" width="17" height="30"/>
</element>
<element name="label38" ref="label_38">
- <bounds x="130" y="569" width="51" height="24">
- </bounds>
+ <bounds x="130" y="569" width="51" height="24"/>
</element>
<element name="label39" ref="label_39">
- <bounds x="144" y="593" width="23" height="24">
- </bounds>
+ <bounds x="144" y="593" width="23" height="24"/>
</element>
<element name="label40" ref="label_40">
- <bounds x="278" y="569" width="51" height="24">
- </bounds>
+ <bounds x="278" y="569" width="51" height="24"/>
</element>
<element name="label41" ref="label_41">
- <bounds x="278" y="593" width="51" height="24">
- </bounds>
+ <bounds x="278" y="593" width="51" height="24"/>
</element>
<element name="label42" ref="label_42">
- <bounds x="438" y="593" width="51" height="24">
- </bounds>
+ <bounds x="438" y="593" width="51" height="24"/>
</element>
<element name="label43" ref="label_43">
- <bounds x="437" y="569" width="51" height="24">
- </bounds>
+ <bounds x="437" y="569" width="51" height="24"/>
</element>
<element name="label62" ref="label_62">
- <bounds x="519" y="559" width="86" height="48">
- </bounds>
+ <bounds x="519" y="559" width="86" height="48"/>
</element>
<element name="label66" ref="label_66">
- <bounds x="608" y="593" width="51" height="24">
- </bounds>
+ <bounds x="608" y="593" width="51" height="24"/>
</element>
<element name="label152" ref="label_152">
- <bounds x="518" y="473" width="86" height="32">
- </bounds>
+ <bounds x="518" y="473" width="86" height="32"/>
</element>
<element name="label159" ref="label_159">
- <bounds x="250" y="16" width="57" height="48">
- </bounds>
+ <bounds x="250" y="16" width="57" height="48"/>
</element>
<element name="label160" ref="label_160">
- <bounds x="613" y="16" width="73" height="48">
- </bounds>
+ <bounds x="613" y="16" width="73" height="48"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4actpak.lay b/src/mame/layout/m4actpak.lay
index c8d97affcea..d07f966a927 100644
--- a/src/mame/layout/m4actpak.lay
+++ b/src/mame/layout/m4actpak.lay
@@ -8,3785 +8,2886 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_103_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_103_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_95_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_95_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_87_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_87_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_79_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_79_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_71_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_71_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_28_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_28_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_29_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_29_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="30p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_30_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_30_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="40p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_31_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_31_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="50p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_27_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_27_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_7_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_7_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_15_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_15_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.50">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_23_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_23_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_19_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_19_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_20_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_20_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="90p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_21_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_21_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="80p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_22_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_22_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="70p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_12_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_12_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_13_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_13_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.30">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_14_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_14_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_11_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_11_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_3_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_3_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_5_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_5_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_6_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_6_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1.80">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_4_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</disk>
</element>
<element name="lamp_4_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;2+">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_63_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_63_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="K">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_62_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_62_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_61_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_61_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="P">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="C">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_53_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="T">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="I">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_55_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_55_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_59_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_59_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="N">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_123_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_121_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_121_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_115_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_115_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_82_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="SC">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_81_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="50p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_80_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="50p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_89_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_89_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_97_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_105_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_105_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_96_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_88_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_104_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_106_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_106_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_90_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_90_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</disk>
</element>
<element name="lamp_98_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</disk>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#x3C;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="SC">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_107_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_107_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_91_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_91_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_85_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_85_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#x3C;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_50_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_50_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_127_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_127_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="Link">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Up">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_126_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_126_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pack">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_125_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_125_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="50p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Advanc">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_119_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_119_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pack">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_117_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_117_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Advanc">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_58_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_58_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_47_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_47_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="NO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_39_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_39_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="YES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_92_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_93_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_93_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_72_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_72_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="EXtra">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_122_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_122">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_123_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_123">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="ACTION">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_124_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_124">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_125_border">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_125">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="SAVE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="IT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_126_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_126">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_127_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_127">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_128_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_128">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_129_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_129">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_130_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_130">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Orange,Pound,Lemon(2),Cherry,Orange,Lemon(3),Pear,Pound(R),Bell,SuperCash,Melon,Plum(1),Jackpot,Grape,Cashpot,Lemon(1)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Lemon,Cherry(?),SuperCash,Pound,Cherry(4),Orange,Plum,Cherry(2),Cashpot,Bell,Grape,Jackpot,Pear(1),Melon,Plum,Pear(1)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Plum,Orange(3),Lemon(1),Cherry,Grape(1),Pound,SuperCash,Orange(2),Pear,Cherry,Bell,Cashpot,Jackpot,Melon,Lemon,Grape(R)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_3">
<text string="CASHBANK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_7">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_8">
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Line">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_9">
<text string="Cash Pack">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_10">
<text string="Nudge Pack">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_11">
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_12">
<text string="PLAYS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_15">
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Line">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_16">
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_17">
<text string="-">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_18">
<text string="1ST 2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Same">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_19">
<text string="30p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_20">
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_21">
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_34">
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_35">
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_36">
<text string="&#xA3;1.50">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_37">
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="pack">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_38">
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_39">
<text string="80p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_40">
<text string="50p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_41">
<text string="40p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_42">
<text string="30p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_43">
<text string="PAY TABLE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="794" height="523">
- </bounds>
+ <bounds x="0" y="0" width="794" height="523"/>
</element>
<element ref="reel_background">
- <bounds x="261" y="337" width="80" height="140">
- </bounds>
+ <bounds x="261" y="337" width="80" height="140"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="261.0000" y="337.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="261.0000" y="337.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="264.3333" y="338.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="264.3333" y="338.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="267.6667" y="340.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="267.6667" y="340.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="271.0000" y="342.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="271.0000" y="342.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="274.3333" y="344.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="274.3333" y="344.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="277.6667" y="346.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="277.6667" y="346.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="261.0000" y="383.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="261.0000" y="383.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="264.3333" y="385.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="264.3333" y="385.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="267.6667" y="387.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="267.6667" y="387.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="271.0000" y="389.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="271.0000" y="389.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="274.3333" y="391.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="274.3333" y="391.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="277.6667" y="393.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="277.6667" y="393.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="261.0000" y="430.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="261.0000" y="430.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="264.3333" y="432.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="264.3333" y="432.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="267.6667" y="434.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="267.6667" y="434.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="271.0000" y="436.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="271.0000" y="436.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="274.3333" y="438.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="274.3333" y="438.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="277.6667" y="440.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="277.6667" y="440.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="261" y="337" width="80" height="140">
- </bounds>
+ <bounds x="261" y="337" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="343" y="337" width="80" height="140">
- </bounds>
+ <bounds x="343" y="337" width="80" height="140"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="343.0000" y="337.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="343.0000" y="337.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="346.3333" y="338.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="346.3333" y="338.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="349.6667" y="340.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="349.6667" y="340.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="353.0000" y="342.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="353.0000" y="342.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="356.3333" y="344.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="356.3333" y="344.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="359.6667" y="346.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="359.6667" y="346.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="343.0000" y="383.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="343.0000" y="383.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="346.3333" y="385.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="346.3333" y="385.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="349.6667" y="387.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="349.6667" y="387.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="353.0000" y="389.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="353.0000" y="389.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="356.3333" y="391.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="356.3333" y="391.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="359.6667" y="393.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="359.6667" y="393.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="343.0000" y="430.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="343.0000" y="430.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="346.3333" y="432.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="346.3333" y="432.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="349.6667" y="434.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="349.6667" y="434.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="353.0000" y="436.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="353.0000" y="436.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="356.3333" y="438.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="356.3333" y="438.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="359.6667" y="440.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="359.6667" y="440.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="343" y="337" width="80" height="140">
- </bounds>
+ <bounds x="343" y="337" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="425" y="337" width="80" height="140">
- </bounds>
+ <bounds x="425" y="337" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="425.0000" y="337.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="425.0000" y="337.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="428.3333" y="338.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="428.3333" y="338.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="431.6667" y="340.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="431.6667" y="340.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="435.0000" y="342.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="435.0000" y="342.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="438.3333" y="344.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="438.3333" y="344.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="441.6667" y="346.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="441.6667" y="346.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="425.0000" y="383.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="425.0000" y="383.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="428.3333" y="385.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="428.3333" y="385.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="431.6667" y="387.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="431.6667" y="387.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="435.0000" y="389.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="435.0000" y="389.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="438.3333" y="391.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="438.3333" y="391.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="441.6667" y="393.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="441.6667" y="393.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="425.0000" y="430.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="425.0000" y="430.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="428.3333" y="432.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="428.3333" y="432.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="431.6667" y="434.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="431.6667" y="434.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="435.0000" y="436.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="435.0000" y="436.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="438.3333" y="438.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="438.3333" y="438.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="441.6667" y="440.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="441.6667" y="440.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="425" y="337" width="80" height="140">
- </bounds>
+ <bounds x="425" y="337" width="80" height="140"/>
</element>
<element name="lamp103" ref="lamp_103_1_border" state="0">
- <bounds x="692" y="138" width="58" height="28">
- </bounds>
+ <bounds x="692" y="138" width="58" height="28"/>
</element>
<element name="lamp103" ref="lamp_103_1" state="0">
- <bounds x="694" y="140" width="54" height="24">
- </bounds>
+ <bounds x="694" y="140" width="54" height="24"/>
</element>
<element name="lamp95" ref="lamp_95_1_border" state="0">
- <bounds x="692" y="110" width="58" height="28">
- </bounds>
+ <bounds x="692" y="110" width="58" height="28"/>
</element>
<element name="lamp95" ref="lamp_95_1" state="0">
- <bounds x="694" y="112" width="54" height="24">
- </bounds>
+ <bounds x="694" y="112" width="54" height="24"/>
</element>
<element name="lamp87" ref="lamp_87_1_border" state="0">
- <bounds x="692" y="82" width="58" height="28">
- </bounds>
+ <bounds x="692" y="82" width="58" height="28"/>
</element>
<element name="lamp87" ref="lamp_87_1" state="0">
- <bounds x="694" y="84" width="54" height="24">
- </bounds>
+ <bounds x="694" y="84" width="54" height="24"/>
</element>
<element name="lamp79" ref="lamp_79_1_border" state="0">
- <bounds x="692" y="54" width="58" height="28">
- </bounds>
+ <bounds x="692" y="54" width="58" height="28"/>
</element>
<element name="lamp79" ref="lamp_79_1" state="0">
- <bounds x="694" y="56" width="54" height="24">
- </bounds>
+ <bounds x="694" y="56" width="54" height="24"/>
</element>
<element name="lamp71" ref="lamp_71_1_border" state="0">
- <bounds x="692" y="26" width="58" height="28">
- </bounds>
+ <bounds x="692" y="26" width="58" height="28"/>
</element>
<element name="lamp71" ref="lamp_71_1" state="0">
- <bounds x="694" y="28" width="54" height="24">
- </bounds>
+ <bounds x="694" y="28" width="54" height="24"/>
</element>
<element name="lamp28" ref="lamp_28_1_border" state="0">
- <bounds x="592" y="426" width="48" height="48">
- </bounds>
+ <bounds x="592" y="426" width="48" height="48"/>
</element>
<element name="lamp28" ref="lamp_28_1" state="0">
- <bounds x="594" y="428" width="44" height="44">
- </bounds>
+ <bounds x="594" y="428" width="44" height="44"/>
</element>
<element name="lamp29" ref="lamp_29_1_border" state="0">
- <bounds x="641" y="426" width="48" height="48">
- </bounds>
+ <bounds x="641" y="426" width="48" height="48"/>
</element>
<element name="lamp29" ref="lamp_29_1" state="0">
- <bounds x="643" y="428" width="44" height="44">
- </bounds>
+ <bounds x="643" y="428" width="44" height="44"/>
</element>
<element name="lamp30" ref="lamp_30_1_border" state="0">
- <bounds x="690" y="426" width="48" height="48">
- </bounds>
+ <bounds x="690" y="426" width="48" height="48"/>
</element>
<element name="lamp30" ref="lamp_30_1" state="0">
- <bounds x="692" y="428" width="44" height="44">
- </bounds>
+ <bounds x="692" y="428" width="44" height="44"/>
</element>
<element name="lamp31" ref="lamp_31_1_border" state="0">
- <bounds x="739" y="426" width="48" height="48">
- </bounds>
+ <bounds x="739" y="426" width="48" height="48"/>
</element>
<element name="lamp31" ref="lamp_31_1" state="0">
- <bounds x="741" y="428" width="44" height="44">
- </bounds>
+ <bounds x="741" y="428" width="44" height="44"/>
</element>
<element name="lamp27" ref="lamp_27_1_border" state="0">
- <bounds x="543" y="426" width="48" height="48">
- </bounds>
+ <bounds x="543" y="426" width="48" height="48"/>
</element>
<element name="lamp27" ref="lamp_27_1" state="0">
- <bounds x="545" y="428" width="44" height="44">
- </bounds>
+ <bounds x="545" y="428" width="44" height="44"/>
</element>
<element name="lamp7" ref="lamp_7_1_border" state="0">
- <bounds x="739" y="278" width="48" height="48">
- </bounds>
+ <bounds x="739" y="278" width="48" height="48"/>
</element>
<element name="lamp7" ref="lamp_7_1" state="0">
- <bounds x="741" y="280" width="44" height="44">
- </bounds>
+ <bounds x="741" y="280" width="44" height="44"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
- <bounds x="739" y="327" width="48" height="48">
- </bounds>
+ <bounds x="739" y="327" width="48" height="48"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
- <bounds x="741" y="329" width="44" height="44">
- </bounds>
+ <bounds x="741" y="329" width="44" height="44"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
- <bounds x="739" y="376" width="48" height="48">
- </bounds>
+ <bounds x="739" y="376" width="48" height="48"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
- <bounds x="741" y="378" width="44" height="44">
- </bounds>
+ <bounds x="741" y="378" width="44" height="44"/>
</element>
<element name="lamp19" ref="lamp_19_1_border" state="0">
- <bounds x="543" y="376" width="48" height="48">
- </bounds>
+ <bounds x="543" y="376" width="48" height="48"/>
</element>
<element name="lamp19" ref="lamp_19_1" state="0">
- <bounds x="545" y="378" width="44" height="44">
- </bounds>
+ <bounds x="545" y="378" width="44" height="44"/>
</element>
<element name="lamp20" ref="lamp_20_1_border" state="0">
- <bounds x="592" y="376" width="48" height="48">
- </bounds>
+ <bounds x="592" y="376" width="48" height="48"/>
</element>
<element name="lamp20" ref="lamp_20_1" state="0">
- <bounds x="594" y="378" width="44" height="44">
- </bounds>
+ <bounds x="594" y="378" width="44" height="44"/>
</element>
<element name="lamp21" ref="lamp_21_1_border" state="0">
- <bounds x="641" y="376" width="48" height="48">
- </bounds>
+ <bounds x="641" y="376" width="48" height="48"/>
</element>
<element name="lamp21" ref="lamp_21_1" state="0">
- <bounds x="643" y="378" width="44" height="44">
- </bounds>
+ <bounds x="643" y="378" width="44" height="44"/>
</element>
<element name="lamp22" ref="lamp_22_1_border" state="0">
- <bounds x="690" y="376" width="48" height="48">
- </bounds>
+ <bounds x="690" y="376" width="48" height="48"/>
</element>
<element name="lamp22" ref="lamp_22_1" state="0">
- <bounds x="692" y="378" width="44" height="44">
- </bounds>
+ <bounds x="692" y="378" width="44" height="44"/>
</element>
<element name="lamp12" ref="lamp_12_1_border" state="0">
- <bounds x="592" y="327" width="48" height="48">
- </bounds>
+ <bounds x="592" y="327" width="48" height="48"/>
</element>
<element name="lamp12" ref="lamp_12_1" state="0">
- <bounds x="594" y="329" width="44" height="44">
- </bounds>
+ <bounds x="594" y="329" width="44" height="44"/>
</element>
<element name="lamp13" ref="lamp_13_1_border" state="0">
- <bounds x="641" y="327" width="48" height="48">
- </bounds>
+ <bounds x="641" y="327" width="48" height="48"/>
</element>
<element name="lamp13" ref="lamp_13_1" state="0">
- <bounds x="643" y="329" width="44" height="44">
- </bounds>
+ <bounds x="643" y="329" width="44" height="44"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
- <bounds x="690" y="327" width="48" height="48">
- </bounds>
+ <bounds x="690" y="327" width="48" height="48"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
- <bounds x="692" y="329" width="44" height="44">
- </bounds>
+ <bounds x="692" y="329" width="44" height="44"/>
</element>
<element name="lamp11" ref="lamp_11_1_border" state="0">
- <bounds x="543" y="327" width="48" height="48">
- </bounds>
+ <bounds x="543" y="327" width="48" height="48"/>
</element>
<element name="lamp11" ref="lamp_11_1" state="0">
- <bounds x="545" y="329" width="44" height="44">
- </bounds>
+ <bounds x="545" y="329" width="44" height="44"/>
</element>
<element name="lamp3" ref="lamp_3_1_border" state="0">
- <bounds x="543" y="278" width="48" height="48">
- </bounds>
+ <bounds x="543" y="278" width="48" height="48"/>
</element>
<element name="lamp3" ref="lamp_3_1" state="0">
- <bounds x="545" y="280" width="44" height="44">
- </bounds>
+ <bounds x="545" y="280" width="44" height="44"/>
</element>
<element name="lamp5" ref="lamp_5_1_border" state="0">
- <bounds x="641" y="278" width="48" height="48">
- </bounds>
+ <bounds x="641" y="278" width="48" height="48"/>
</element>
<element name="lamp5" ref="lamp_5_1" state="0">
- <bounds x="643" y="280" width="44" height="44">
- </bounds>
+ <bounds x="643" y="280" width="44" height="44"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
- <bounds x="690" y="278" width="48" height="48">
- </bounds>
+ <bounds x="690" y="278" width="48" height="48"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
- <bounds x="692" y="280" width="44" height="44">
- </bounds>
+ <bounds x="692" y="280" width="44" height="44"/>
</element>
<element name="lamp4" ref="lamp_4_1_border" state="0">
- <bounds x="592" y="278" width="48" height="48">
- </bounds>
+ <bounds x="592" y="278" width="48" height="48"/>
</element>
<element name="lamp4" ref="lamp_4_1" state="0">
- <bounds x="594" y="280" width="44" height="44">
- </bounds>
+ <bounds x="594" y="280" width="44" height="44"/>
</element>
<element name="lamp63" ref="lamp_63_1_border" state="0">
- <bounds x="500" y="246" width="34" height="34">
- </bounds>
+ <bounds x="500" y="246" width="34" height="34"/>
</element>
<element name="lamp63" ref="lamp_63_1" state="0">
- <bounds x="502" y="248" width="30" height="30">
- </bounds>
+ <bounds x="502" y="248" width="30" height="30"/>
</element>
<element name="lamp62" ref="lamp_62_1_border" state="0">
- <bounds x="465" y="243" width="34" height="34">
- </bounds>
+ <bounds x="465" y="243" width="34" height="34"/>
</element>
<element name="lamp62" ref="lamp_62_1" state="0">
- <bounds x="467" y="245" width="30" height="30">
- </bounds>
+ <bounds x="467" y="245" width="30" height="30"/>
</element>
<element name="lamp61" ref="lamp_61_1_border" state="0">
- <bounds x="430" y="240" width="34" height="34">
- </bounds>
+ <bounds x="430" y="240" width="34" height="34"/>
</element>
<element name="lamp61" ref="lamp_61_1" state="0">
- <bounds x="432" y="242" width="30" height="30">
- </bounds>
+ <bounds x="432" y="242" width="30" height="30"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="395" y="237" width="34" height="34">
- </bounds>
+ <bounds x="395" y="237" width="34" height="34"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="397" y="239" width="30" height="30">
- </bounds>
+ <bounds x="397" y="239" width="30" height="30"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="185" y="251" width="34" height="34">
- </bounds>
+ <bounds x="185" y="251" width="34" height="34"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="187" y="253" width="30" height="30">
- </bounds>
+ <bounds x="187" y="253" width="30" height="30"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="220" y="246" width="34" height="34">
- </bounds>
+ <bounds x="220" y="246" width="34" height="34"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="222" y="248" width="30" height="30">
- </bounds>
+ <bounds x="222" y="248" width="30" height="30"/>
</element>
<element name="lamp53" ref="lamp_53_1_border" state="0">
- <bounds x="255" y="243" width="34" height="34">
- </bounds>
+ <bounds x="255" y="243" width="34" height="34"/>
</element>
<element name="lamp53" ref="lamp_53_1" state="0">
- <bounds x="257" y="245" width="30" height="30">
- </bounds>
+ <bounds x="257" y="245" width="30" height="30"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="290" y="240" width="34" height="34">
- </bounds>
+ <bounds x="290" y="240" width="34" height="34"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="292" y="242" width="30" height="30">
- </bounds>
+ <bounds x="292" y="242" width="30" height="30"/>
</element>
<element name="lamp55" ref="lamp_55_1_border" state="0">
- <bounds x="325" y="237" width="34" height="34">
- </bounds>
+ <bounds x="325" y="237" width="34" height="34"/>
</element>
<element name="lamp55" ref="lamp_55_1" state="0">
- <bounds x="327" y="239" width="30" height="30">
- </bounds>
+ <bounds x="327" y="239" width="30" height="30"/>
</element>
<element name="lamp59" ref="lamp_59_1_border" state="0">
- <bounds x="360" y="234" width="34" height="34">
- </bounds>
+ <bounds x="360" y="234" width="34" height="34"/>
</element>
<element name="lamp59" ref="lamp_59_1" state="0">
- <bounds x="362" y="236" width="30" height="30">
- </bounds>
+ <bounds x="362" y="236" width="30" height="30"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="353" y="145" width="46" height="27">
- </bounds>
+ <bounds x="353" y="145" width="46" height="27"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="355" y="147" width="42" height="23">
- </bounds>
+ <bounds x="355" y="147" width="42" height="23"/>
</element>
<element name="lamp123" ref="lamp_123_1_border" state="0">
- <bounds x="352" y="172" width="48" height="27">
- </bounds>
+ <bounds x="352" y="172" width="48" height="27"/>
</element>
<element name="lamp123" ref="lamp_123_1" state="0">
- <bounds x="354" y="174" width="44" height="23">
- </bounds>
+ <bounds x="354" y="174" width="44" height="23"/>
</element>
<element name="lamp121" ref="lamp_121_1_border" state="0">
- <bounds x="354" y="118" width="44" height="27">
- </bounds>
+ <bounds x="354" y="118" width="44" height="27"/>
</element>
<element name="lamp121" ref="lamp_121_1" state="0">
- <bounds x="356" y="120" width="40" height="23">
- </bounds>
+ <bounds x="356" y="120" width="40" height="23"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="355" y="91" width="42" height="27">
- </bounds>
+ <bounds x="355" y="91" width="42" height="27"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="357" y="93" width="38" height="23">
- </bounds>
+ <bounds x="357" y="93" width="38" height="23"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="356" y="64" width="40" height="27">
- </bounds>
+ <bounds x="356" y="64" width="40" height="27"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="358" y="66" width="36" height="23">
- </bounds>
+ <bounds x="358" y="66" width="36" height="23"/>
</element>
<element name="lamp115" ref="lamp_115_1_border" state="0">
- <bounds x="357" y="37" width="38" height="27">
- </bounds>
+ <bounds x="357" y="37" width="38" height="27"/>
</element>
<element name="lamp115" ref="lamp_115_1" state="0">
- <bounds x="359" y="39" width="34" height="23">
- </bounds>
+ <bounds x="359" y="39" width="34" height="23"/>
</element>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="358" y="10" width="36" height="27">
- </bounds>
+ <bounds x="358" y="10" width="36" height="27"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="360" y="12" width="32" height="23">
- </bounds>
+ <bounds x="360" y="12" width="32" height="23"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="294" y="37" width="32" height="32">
- </bounds>
+ <bounds x="294" y="37" width="32" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="296" y="39" width="28" height="28">
- </bounds>
+ <bounds x="296" y="39" width="28" height="28"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="260" y="44" width="32" height="32">
- </bounds>
+ <bounds x="260" y="44" width="32" height="32"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="262" y="46" width="28" height="28">
- </bounds>
+ <bounds x="262" y="46" width="28" height="28"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="227" y="51" width="32" height="32">
- </bounds>
+ <bounds x="227" y="51" width="32" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="229" y="53" width="28" height="28">
- </bounds>
+ <bounds x="229" y="53" width="28" height="28"/>
</element>
<element name="lamp89" ref="lamp_89_1_border" state="0">
- <bounds x="260" y="77" width="32" height="32">
- </bounds>
+ <bounds x="260" y="77" width="32" height="32"/>
</element>
<element name="lamp89" ref="lamp_89_1" state="0">
- <bounds x="262" y="79" width="28" height="28">
- </bounds>
+ <bounds x="262" y="79" width="28" height="28"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="260" y="110" width="32" height="32">
- </bounds>
+ <bounds x="260" y="110" width="32" height="32"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="262" y="112" width="28" height="28">
- </bounds>
+ <bounds x="262" y="112" width="28" height="28"/>
</element>
<element name="lamp105" ref="lamp_105_1_border" state="0">
- <bounds x="260" y="143" width="32" height="32">
- </bounds>
+ <bounds x="260" y="143" width="32" height="32"/>
</element>
<element name="lamp105" ref="lamp_105_1" state="0">
- <bounds x="262" y="145" width="28" height="28">
- </bounds>
+ <bounds x="262" y="145" width="28" height="28"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="227" y="117" width="32" height="32">
- </bounds>
+ <bounds x="227" y="117" width="32" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="229" y="119" width="28" height="28">
- </bounds>
+ <bounds x="229" y="119" width="28" height="28"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="227" y="84" width="32" height="32">
- </bounds>
+ <bounds x="227" y="84" width="32" height="32"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="229" y="86" width="28" height="28">
- </bounds>
+ <bounds x="229" y="86" width="28" height="28"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="227" y="150" width="32" height="32">
- </bounds>
+ <bounds x="227" y="150" width="32" height="32"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="229" y="152" width="28" height="28">
- </bounds>
+ <bounds x="229" y="152" width="28" height="28"/>
</element>
<element name="lamp106" ref="lamp_106_1_border" state="0">
- <bounds x="293" y="136" width="32" height="32">
- </bounds>
+ <bounds x="293" y="136" width="32" height="32"/>
</element>
<element name="lamp106" ref="lamp_106_1" state="0">
- <bounds x="295" y="138" width="28" height="28">
- </bounds>
+ <bounds x="295" y="138" width="28" height="28"/>
</element>
<element name="lamp90" ref="lamp_90_1_border" state="0">
- <bounds x="293" y="70" width="32" height="32">
- </bounds>
+ <bounds x="293" y="70" width="32" height="32"/>
</element>
<element name="lamp90" ref="lamp_90_1" state="0">
- <bounds x="295" y="72" width="28" height="28">
- </bounds>
+ <bounds x="295" y="72" width="28" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="293" y="103" width="32" height="32">
- </bounds>
+ <bounds x="293" y="103" width="32" height="32"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="295" y="105" width="28" height="28">
- </bounds>
+ <bounds x="295" y="105" width="28" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="467" y="44" width="32" height="32">
- </bounds>
+ <bounds x="467" y="44" width="32" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="469" y="46" width="28" height="28">
- </bounds>
+ <bounds x="469" y="46" width="28" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="434" y="37" width="32" height="32">
- </bounds>
+ <bounds x="434" y="37" width="32" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="436" y="39" width="28" height="28">
- </bounds>
+ <bounds x="436" y="39" width="28" height="28"/>
</element>
<element name="lamp107" ref="lamp_107_1_border" state="0">
- <bounds x="434" y="136" width="32" height="32">
- </bounds>
+ <bounds x="434" y="136" width="32" height="32"/>
</element>
<element name="lamp107" ref="lamp_107_1" state="0">
- <bounds x="436" y="138" width="28" height="28">
- </bounds>
+ <bounds x="436" y="138" width="28" height="28"/>
</element>
<element name="lamp91" ref="lamp_91_1_border" state="0">
- <bounds x="434" y="70" width="32" height="32">
- </bounds>
+ <bounds x="434" y="70" width="32" height="32"/>
</element>
<element name="lamp91" ref="lamp_91_1" state="0">
- <bounds x="436" y="72" width="28" height="28">
- </bounds>
+ <bounds x="436" y="72" width="28" height="28"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="434" y="103" width="32" height="32">
- </bounds>
+ <bounds x="434" y="103" width="32" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="436" y="105" width="28" height="28">
- </bounds>
+ <bounds x="436" y="105" width="28" height="28"/>
</element>
<element name="lamp85" ref="lamp_85_1_border" state="0">
- <bounds x="500" y="51" width="32" height="32">
- </bounds>
+ <bounds x="500" y="51" width="32" height="32"/>
</element>
<element name="lamp85" ref="lamp_85_1" state="0">
- <bounds x="502" y="53" width="28" height="28">
- </bounds>
+ <bounds x="502" y="53" width="28" height="28"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="351" y="199" width="50" height="27">
- </bounds>
+ <bounds x="351" y="199" width="50" height="27"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="353" y="201" width="46" height="23">
- </bounds>
+ <bounds x="353" y="201" width="46" height="23"/>
</element>
<element name="lamp50" ref="lamp_50_1_border" state="0">
- <bounds x="185" y="222" width="56" height="24">
- </bounds>
+ <bounds x="185" y="222" width="56" height="24"/>
</element>
<element name="lamp50" ref="lamp_50_1" state="0">
- <bounds x="187" y="224" width="52" height="20">
- </bounds>
+ <bounds x="187" y="224" width="52" height="20"/>
</element>
<element name="lamp127" ref="lamp_127_1_border" state="0">
- <bounds x="478" y="301" width="62" height="32">
- </bounds>
+ <bounds x="478" y="301" width="62" height="32"/>
</element>
<element name="lamp127" ref="lamp_127_1" state="0">
- <bounds x="480" y="303" width="58" height="28">
- </bounds>
+ <bounds x="480" y="303" width="58" height="28"/>
</element>
<element name="lamp126" ref="lamp_126_1_border" state="0">
- <bounds x="415" y="301" width="62" height="32">
- </bounds>
+ <bounds x="415" y="301" width="62" height="32"/>
</element>
<element name="lamp126" ref="lamp_126_1" state="0">
- <bounds x="417" y="303" width="58" height="28">
- </bounds>
+ <bounds x="417" y="303" width="58" height="28"/>
</element>
<element name="lamp125" ref="lamp_125_1_border" state="0">
- <bounds x="352" y="301" width="62" height="32">
- </bounds>
+ <bounds x="352" y="301" width="62" height="32"/>
</element>
<element name="lamp125" ref="lamp_125_1" state="0">
- <bounds x="354" y="303" width="58" height="28">
- </bounds>
+ <bounds x="354" y="303" width="58" height="28"/>
</element>
<element name="lamp119" ref="lamp_119_1_border" state="0">
- <bounds x="289" y="301" width="62" height="32">
- </bounds>
+ <bounds x="289" y="301" width="62" height="32"/>
</element>
<element name="lamp119" ref="lamp_119_1" state="0">
- <bounds x="291" y="303" width="58" height="28">
- </bounds>
+ <bounds x="291" y="303" width="58" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="226" y="301" width="62" height="32">
- </bounds>
+ <bounds x="226" y="301" width="62" height="32"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="228" y="303" width="58" height="28">
- </bounds>
+ <bounds x="228" y="303" width="58" height="28"/>
</element>
<element name="lamp117" ref="lamp_117_1_border" state="0">
- <bounds x="163" y="301" width="62" height="32">
- </bounds>
+ <bounds x="163" y="301" width="62" height="32"/>
</element>
<element name="lamp117" ref="lamp_117_1" state="0">
- <bounds x="165" y="303" width="58" height="28">
- </bounds>
+ <bounds x="165" y="303" width="58" height="28"/>
</element>
<element name="lamp58" ref="lamp_58_1_border" state="0">
- <bounds x="350" y="273" width="55" height="24">
- </bounds>
+ <bounds x="350" y="273" width="55" height="24"/>
</element>
<element name="lamp58" ref="lamp_58_1" state="0">
- <bounds x="352" y="275" width="51" height="20">
- </bounds>
+ <bounds x="352" y="275" width="51" height="20"/>
</element>
<element name="lamp47" ref="lamp_47_1_border" state="0">
- <bounds x="618" y="240" width="52" height="30">
- </bounds>
+ <bounds x="618" y="240" width="52" height="30"/>
</element>
<element name="lamp47" ref="lamp_47_1" state="0">
- <bounds x="620" y="242" width="48" height="26">
- </bounds>
+ <bounds x="620" y="242" width="48" height="26"/>
</element>
<element name="lamp39" ref="lamp_39_1_border" state="0">
- <bounds x="671" y="240" width="52" height="30">
- </bounds>
+ <bounds x="671" y="240" width="52" height="30"/>
</element>
<element name="lamp39" ref="lamp_39_1" state="0">
- <bounds x="673" y="242" width="48" height="26">
- </bounds>
+ <bounds x="673" y="242" width="48" height="26"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="467" y="143" width="32" height="32">
- </bounds>
+ <bounds x="467" y="143" width="32" height="32"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="469" y="145" width="28" height="28">
- </bounds>
+ <bounds x="469" y="145" width="28" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="467" y="110" width="32" height="32">
- </bounds>
+ <bounds x="467" y="110" width="32" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="469" y="112" width="28" height="28">
- </bounds>
+ <bounds x="469" y="112" width="28" height="28"/>
</element>
<element name="lamp92" ref="lamp_92_1_border" state="0">
- <bounds x="467" y="77" width="32" height="32">
- </bounds>
+ <bounds x="467" y="77" width="32" height="32"/>
</element>
<element name="lamp92" ref="lamp_92_1" state="0">
- <bounds x="469" y="79" width="28" height="28">
- </bounds>
+ <bounds x="469" y="79" width="28" height="28"/>
</element>
<element name="lamp109" ref="lamp_109_1_border" state="0">
- <bounds x="500" y="150" width="32" height="32">
- </bounds>
+ <bounds x="500" y="150" width="32" height="32"/>
</element>
<element name="lamp109" ref="lamp_109_1" state="0">
- <bounds x="502" y="152" width="28" height="28">
- </bounds>
+ <bounds x="502" y="152" width="28" height="28"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="500" y="117" width="32" height="32">
- </bounds>
+ <bounds x="500" y="117" width="32" height="32"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="502" y="119" width="28" height="28">
- </bounds>
+ <bounds x="502" y="119" width="28" height="28"/>
</element>
<element name="lamp93" ref="lamp_93_1_border" state="0">
- <bounds x="500" y="84" width="32" height="32">
- </bounds>
+ <bounds x="500" y="84" width="32" height="32"/>
</element>
<element name="lamp93" ref="lamp_93_1" state="0">
- <bounds x="502" y="86" width="28" height="28">
- </bounds>
+ <bounds x="502" y="86" width="28" height="28"/>
</element>
<element name="lamp72" ref="lamp_72_1_border" state="0">
- <bounds x="215" y="31" width="48" height="20">
- </bounds>
+ <bounds x="215" y="31" width="48" height="20"/>
</element>
<element name="lamp72" ref="lamp_72_1" state="0">
- <bounds x="217" y="33" width="44" height="16">
- </bounds>
+ <bounds x="217" y="33" width="44" height="16"/>
</element>
<element name="lamp42" ref="colour_button_122_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="560" y="213" width="42" height="27">
- </bounds>
+ <bounds x="560" y="213" width="42" height="27"/>
</element>
<element name="lamp42" ref="colour_button_122" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="562" y="215" width="38" height="23">
- </bounds>
+ <bounds x="562" y="215" width="38" height="23"/>
</element>
<element name="lamp120" ref="colour_button_123_border" state="0" inputtag="BLACK1" inputmask="0x02">
- <bounds x="268" y="193" width="82" height="38">
- </bounds>
+ <bounds x="268" y="193" width="82" height="38"/>
</element>
<element name="lamp120" ref="colour_button_123" state="0" inputtag="BLACK1" inputmask="0x02">
- <bounds x="270" y="195" width="78" height="34">
- </bounds>
+ <bounds x="270" y="195" width="78" height="34"/>
</element>
<element name="lamp41" ref="colour_button_124_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="604" y="479" width="82" height="38">
- </bounds>
+ <bounds x="604" y="479" width="82" height="38"/>
</element>
<element name="lamp41" ref="colour_button_124" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="606" y="481" width="78" height="34">
- </bounds>
+ <bounds x="606" y="481" width="78" height="34"/>
</element>
<element name="lamp-1" ref="colour_button_125_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="515" y="479" width="82" height="38">
- </bounds>
+ <bounds x="515" y="479" width="82" height="38"/>
</element>
<element name="lamp-1" ref="colour_button_125" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="517" y="481" width="78" height="34">
- </bounds>
+ <bounds x="517" y="481" width="78" height="34"/>
</element>
<element name="lamp26" ref="colour_button_126_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="342" y="479" width="82" height="38">
- </bounds>
+ <bounds x="342" y="479" width="82" height="38"/>
</element>
<element name="lamp26" ref="colour_button_126" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="344" y="481" width="78" height="34">
- </bounds>
+ <bounds x="344" y="481" width="78" height="34"/>
</element>
<element name="lamp32" ref="colour_button_127_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="424" y="479" width="82" height="38">
- </bounds>
+ <bounds x="424" y="479" width="82" height="38"/>
</element>
<element name="lamp32" ref="colour_button_127" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="426" y="481" width="78" height="34">
- </bounds>
+ <bounds x="426" y="481" width="78" height="34"/>
</element>
<element name="lamp25" ref="colour_button_128_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="260" y="479" width="82" height="38">
- </bounds>
+ <bounds x="260" y="479" width="82" height="38"/>
</element>
<element name="lamp25" ref="colour_button_128" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="262" y="481" width="78" height="34">
- </bounds>
+ <bounds x="262" y="481" width="78" height="34"/>
</element>
<element name="lamp33" ref="colour_button_129_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="402" y="193" width="82" height="38">
- </bounds>
+ <bounds x="402" y="193" width="82" height="38"/>
</element>
<element name="lamp33" ref="colour_button_129" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="404" y="195" width="78" height="34">
- </bounds>
+ <bounds x="404" y="195" width="78" height="34"/>
</element>
<element name="lamp49" ref="colour_button_130_border" state="0" inputtag="BLACK1" inputmask="0x04">
- <bounds x="169" y="479" width="82" height="38">
- </bounds>
+ <bounds x="169" y="479" width="82" height="38"/>
</element>
<element name="lamp49" ref="colour_button_130" state="0" inputtag="BLACK1" inputmask="0x04">
- <bounds x="171" y="481" width="78" height="34">
- </bounds>
+ <bounds x="171" y="481" width="78" height="34"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="736" y="170" width="30" height="40">
- </bounds>
+ <bounds x="736" y="170" width="30" height="40"/>
</element>
<element name="digit7" ref="led_digit_red">
- <bounds x="736" y="170" width="30" height="40">
- </bounds>
+ <bounds x="736" y="170" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="736" y="170" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="736" y="170" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="706" y="170" width="30" height="40">
- </bounds>
+ <bounds x="706" y="170" width="30" height="40"/>
</element>
<element name="digit6" ref="led_digit_red">
- <bounds x="706" y="170" width="30" height="40">
- </bounds>
+ <bounds x="706" y="170" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="706" y="170" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="706" y="170" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="676" y="170" width="30" height="40">
- </bounds>
+ <bounds x="676" y="170" width="30" height="40"/>
</element>
<element name="digit5" ref="led_digit_red">
- <bounds x="676" y="170" width="30" height="40">
- </bounds>
+ <bounds x="676" y="170" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="676" y="170" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="676" y="170" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="581" y="170" width="30" height="40">
- </bounds>
+ <bounds x="581" y="170" width="30" height="40"/>
</element>
<element name="digit4" ref="led_digit_red">
- <bounds x="581" y="170" width="30" height="40">
- </bounds>
+ <bounds x="581" y="170" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="581" y="170" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="581" y="170" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="551" y="170" width="30" height="40">
- </bounds>
+ <bounds x="551" y="170" width="30" height="40"/>
</element>
<element name="digit3" ref="led_digit_red">
- <bounds x="551" y="170" width="30" height="40">
- </bounds>
+ <bounds x="551" y="170" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="551" y="170" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="551" y="170" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element name="label3" ref="label_3">
- <bounds x="664" y="3" width="107" height="22">
- </bounds>
+ <bounds x="664" y="3" width="107" height="22"/>
</element>
<element name="label7" ref="label_7">
- <bounds x="639" y="154" width="38" height="67">
- </bounds>
+ <bounds x="639" y="154" width="38" height="67"/>
</element>
<element name="label8" ref="label_8">
- <bounds x="234" y="395" width="25" height="26">
- </bounds>
+ <bounds x="234" y="395" width="25" height="26"/>
</element>
<element name="label9" ref="label_9">
- <bounds x="225" y="11" width="82" height="19">
- </bounds>
+ <bounds x="225" y="11" width="82" height="19"/>
</element>
<element name="label10" ref="label_10">
- <bounds x="426" y="11" width="93" height="19">
- </bounds>
+ <bounds x="426" y="11" width="93" height="19"/>
</element>
<element name="label11" ref="label_11">
- <bounds x="627" y="216" width="71" height="24">
- </bounds>
+ <bounds x="627" y="216" width="71" height="24"/>
</element>
<element name="label12" ref="label_12">
- <bounds x="548" y="149" width="62" height="22">
- </bounds>
+ <bounds x="548" y="149" width="62" height="22"/>
</element>
<element name="label15" ref="label_15">
- <bounds x="507" y="395" width="25" height="26">
- </bounds>
+ <bounds x="507" y="395" width="25" height="26"/>
</element>
<element name="label16" ref="label_16">
- <bounds x="81" y="364" width="34" height="22">
- </bounds>
+ <bounds x="81" y="364" width="34" height="22"/>
</element>
<element name="label17" ref="label_17">
- <bounds x="66" y="362" width="6" height="22">
- </bounds>
+ <bounds x="66" y="362" width="6" height="22"/>
</element>
<element name="label18" ref="label_18">
- <bounds x="20" y="359" width="31" height="28">
- </bounds>
+ <bounds x="20" y="359" width="31" height="28"/>
</element>
<element name="label19" ref="label_19">
- <bounds x="80" y="333" width="34" height="22">
- </bounds>
+ <bounds x="80" y="333" width="34" height="22"/>
</element>
<element name="label20" ref="label_20">
- <bounds x="80" y="63" width="33" height="28">
- </bounds>
+ <bounds x="80" y="63" width="33" height="28"/>
</element>
<element name="label21" ref="label_21">
- <bounds x="80" y="36" width="22" height="22">
- </bounds>
+ <bounds x="80" y="36" width="22" height="22"/>
</element>
<element name="label34" ref="label_34">
- <bounds x="80" y="225" width="34" height="22">
- </bounds>
+ <bounds x="80" y="225" width="34" height="22"/>
</element>
<element name="label35" ref="label_35">
- <bounds x="80" y="90" width="22" height="22">
- </bounds>
+ <bounds x="80" y="90" width="22" height="22"/>
</element>
<element name="label36" ref="label_36">
- <bounds x="80" y="117" width="49" height="22">
- </bounds>
+ <bounds x="80" y="117" width="49" height="22"/>
</element>
<element name="label37" ref="label_37">
- <bounds x="80" y="144" width="28" height="28">
- </bounds>
+ <bounds x="80" y="144" width="28" height="28"/>
</element>
<element name="label38" ref="label_38">
- <bounds x="80" y="171" width="22" height="22">
- </bounds>
+ <bounds x="80" y="171" width="22" height="22"/>
</element>
<element name="label39" ref="label_39">
- <bounds x="80" y="198" width="34" height="22">
- </bounds>
+ <bounds x="80" y="198" width="34" height="22"/>
</element>
<element name="label40" ref="label_40">
- <bounds x="80" y="252" width="34" height="22">
- </bounds>
+ <bounds x="80" y="252" width="34" height="22"/>
</element>
<element name="label41" ref="label_41">
- <bounds x="80" y="279" width="34" height="22">
- </bounds>
+ <bounds x="80" y="279" width="34" height="22"/>
</element>
<element name="label42" ref="label_42">
- <bounds x="80" y="306" width="34" height="22">
- </bounds>
+ <bounds x="80" y="306" width="34" height="22"/>
</element>
<element name="label43" ref="label_43">
- <bounds x="17" y="10" width="87" height="19">
- </bounds>
+ <bounds x="17" y="10" width="87" height="19"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4andybt.lay b/src/mame/layout/m4andybt.lay
index 0d6035b5f43..ea67343103d 100644
--- a/src/mame/layout/m4andybt.lay
+++ b/src/mame/layout/m4andybt.lay
@@ -8,6583 +8,4982 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_129_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_129_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4 +">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_130_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_130_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Bronze">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Series">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_131_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_131_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5 +">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_132_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_132_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_133_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_133_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;6 +">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_136_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_136_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Silver">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Series">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_137_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_137_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;8 +">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_138_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_138_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Spin">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="9">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_139_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_139_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10 +">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_140_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_140_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Gold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Series">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="11">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_141_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_141_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Top">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Prize">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="12">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_128_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_128_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Mystery">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="lamp_162_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_162_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;250">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_156_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_156_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;100">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_160_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_160_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;150">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_152_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_152_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;50">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_154_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_154_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;75">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_147_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_147_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;30">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_148_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_148_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_145_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_145_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_146_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_146_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;25">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_48_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_48_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="Feature">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Exchange">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_204_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_204_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_205_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_205_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1.80">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_203_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_203_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_218_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_218_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_217_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_217_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="5 Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spins">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_216_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_216_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Double">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Money">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_224_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_224_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Darts">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_211_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_211_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_221_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_221_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Double">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Money">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_220_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_220_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="4 Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spins">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_219_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_219_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_213_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_213_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="FLO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_212_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_212_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_120_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_120_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;75">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;50">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_72_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_72_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_64_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_62_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_62_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_46_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_46_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_44_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_44_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;15">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_88_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;25">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_104_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;30">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;250">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_227_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_227_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Instant">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_226_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_226_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="FLO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_225_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_225_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_210_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_210_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_209_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_209_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Instant">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_208_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_208_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="FLO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_201_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_201_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Boost">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_202_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_202_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_200_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_200_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="3 Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spins">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_125_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_125_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Boost">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_197_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_197_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_196_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_196_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="2 Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spins">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_195_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_195_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_194_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_194_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_193_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_193_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_192_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_192_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_127_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_127_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_126_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_126_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="1 Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spin">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_22_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_22_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_123_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_21_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_21_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_20_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_20_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_13_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_13_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_14_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_14_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_15_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_15_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_7_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_7_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_6_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_6_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_5_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_5_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_36_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_36_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Trail">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Held">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_229_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_229_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Race">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_228_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_228_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_237_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_237_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_236_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_236_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;4.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_235_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_235_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="6 Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Spins">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_234_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_234_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="FLO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_233_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_233_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_240_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_240_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Race">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_241_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_241_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_242_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_242_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Andy's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Round">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_243_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_243_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_244_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_244_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="FLO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_245_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_245_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Race">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_253_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_253_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_252_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_252_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_251_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_251_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Instant">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_250_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_250_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Lottery">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Ticket">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_85_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_85_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_93_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_93_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_94_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_95_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_95_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_111_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_111_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_110_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_110_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_103_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_102_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_90_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_90_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Flowers">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="For Flo">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_92_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_92_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Time">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Lottery">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Ticket">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Get Back">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Home">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Back To">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Start">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Go To ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="The Races">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_91_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_91_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Change">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="It">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_50_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_50_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Andy's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Round">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Darts">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Match">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_168_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_168_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_184_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_184_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_176_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_176_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_186_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_186_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_178_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_178_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_170_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_170_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_169_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_169_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_185_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_185_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_177_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_177_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_76_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_76_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_77_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_77_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_78_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_78_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_79_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_79_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_87_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_87_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="x3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_69_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_69_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="x1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_70_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="x2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_71_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_71_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="x1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_67_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.25">
- </color>
+ <color red="0.50" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.06">
- </color>
+ <color red="0.12" green="0.12" blue="0.06"/>
</rect>
</element>
<element name="lamp_67_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.50">
- </color>
+ <color red="1.00" green="1.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.13">
- </color>
+ <color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="x1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_23_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_23_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Now !">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="No">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_119_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_119_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="YES">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_35_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_35_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_195_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_195">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_196_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_196">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="TAKE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="BEER">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.35" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
<text string="MONEY">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.65" width="0.90" height="0.30">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.65" width="0.90" height="0.30"/>
</text>
</element>
<element name="colour_button_197_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_197">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_198_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_198">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_199_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_199">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_200_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_200">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_201_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_201">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_202_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_202">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_203_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_203">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_204_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_204">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Cherry,TripleBar,Red7,DoubleBar(2),Bell,Blue7,DoubleBar(RS),Cherry,Red7,Cherry,Blue7(1),Cherry,TripleBar(N),Red7,Cherry,Blue7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Blue7,Cherry(B),TripleBar,Red7,DoubleBar,Bell,Blue7,SingleBar(3),Cherry,Red7,SingleBar,Blue7,Cherry,DoubleBar(1),Red7,Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Cherry,TripleBar,Red7,DoubleBar(SS),Bell,Blue7,SingleBar(3),Cherry,Red7,SingleBar,Blue7,Cherry(2),DoubleBar,Red7,Cherry(ST),Blue7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Blue7,Cherry,TripleBar(2),Red7,DoubleBar,Bell,Blue7,SingleBar,Cherry(1),Red7,SingleBar,Blue7,Cherry,Bell(LU),Red7,Cherry">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel4" defstate="0">
<reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="7,6,5,4,3,2,1,12,11,10,9,8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="vfd0">
<led16segsc>
- <color red="0.0" green="1.0" blue="1.0">
- </color>
+ <color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_5">
<text string="LOTTERY">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="TICKET">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_28">
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Line">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_29">
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Line">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_37">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_41">
<text string="BEER MONEY">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_58">
<text string="3 Mixed">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="7's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_64">
<text string="4 Mixed">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="7's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_127">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_129">
<text string="Cashpot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_131">
<text string="Reserve">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_135">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_136">
<text string="the">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="races">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_168">
<text string="Instant win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_179">
<text string="Darts match">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_180">
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_189">
<text string="Repeat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_192">
<text string="1 - 12">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="792" height="646">
- </bounds>
+ <bounds x="0" y="0" width="792" height="646"/>
</element>
<element ref="reel_background">
- <bounds x="233" y="414" width="80" height="190">
- </bounds>
+ <bounds x="233" y="414" width="80" height="190"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="233.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="233.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="236.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="236.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="239.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="239.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="243.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="243.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="246.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="246.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="249.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="249.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="233.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="233.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="236.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="236.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="239.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="239.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="243.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="243.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="246.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="246.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="249.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="249.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="233.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="233.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="236.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="236.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="239.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="239.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="243.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="243.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="246.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="246.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="249.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="249.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="233" y="414" width="80" height="190">
- </bounds>
+ <bounds x="233" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="315" y="414" width="80" height="190">
- </bounds>
+ <bounds x="315" y="414" width="80" height="190"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="315.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="315.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="318.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="318.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="321.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="321.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="325.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="325.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="328.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="328.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="331.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="331.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="315.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="315.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="318.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="318.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="321.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="321.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="325.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="325.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="328.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="328.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="331.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="331.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="315.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="315.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="318.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="318.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="321.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="321.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="325.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="325.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="328.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="328.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="331.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="331.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="315" y="414" width="80" height="190">
- </bounds>
+ <bounds x="315" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="397" y="414" width="80" height="190">
- </bounds>
+ <bounds x="397" y="414" width="80" height="190"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="397.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="397.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="400.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="400.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="403.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="403.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="407.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="407.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="410.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="410.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="413.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="413.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="397.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="397.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="400.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="400.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="403.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="403.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="407.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="407.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="410.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="410.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="413.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="413.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="397.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="397.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="400.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="400.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="403.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="403.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="407.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="407.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="410.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="410.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="413.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="413.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="397" y="414" width="80" height="190">
- </bounds>
+ <bounds x="397" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="479" y="414" width="80" height="190">
- </bounds>
+ <bounds x="479" y="414" width="80" height="190"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_0" state="0">
- <bounds x="479.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="479.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_1" state="0">
- <bounds x="482.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="482.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_2" state="0">
- <bounds x="485.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="485.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_3" state="0">
- <bounds x="489.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="489.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_4" state="0">
- <bounds x="492.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="492.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp3" ref="reel_lamp_layer_5" state="0">
- <bounds x="495.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="495.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_0" state="0">
- <bounds x="479.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="479.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="482.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="482.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="485.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="485.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="489.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="489.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="492.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="492.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="495.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="495.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_0" state="0">
- <bounds x="479.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="479.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_1" state="0">
- <bounds x="482.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="482.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_2" state="0">
- <bounds x="485.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="485.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_3" state="0">
- <bounds x="489.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="489.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_4" state="0">
- <bounds x="492.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="492.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp19" ref="reel_lamp_layer_5" state="0">
- <bounds x="495.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="495.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="479" y="414" width="80" height="190">
- </bounds>
+ <bounds x="479" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="155" y="406" width="70" height="70">
- </bounds>
+ <bounds x="155" y="406" width="70" height="70"/>
</element>
<element name="sreel5" ref="reel4" state="0">
- <bounds x="155" y="406" width="70" height="70">
- </bounds>
+ <bounds x="155" y="406" width="70" height="70"/>
</element>
<element name="lamp129" ref="lamp_129_1_border" state="0">
- <bounds x="154" y="3" width="52" height="46">
- </bounds>
+ <bounds x="154" y="3" width="52" height="46"/>
</element>
<element name="lamp129" ref="lamp_129_1" state="0">
- <bounds x="156" y="5" width="48" height="42">
- </bounds>
+ <bounds x="156" y="5" width="48" height="42"/>
</element>
<element name="lamp130" ref="lamp_130_1_border" state="0">
- <bounds x="206" y="3" width="52" height="46">
- </bounds>
+ <bounds x="206" y="3" width="52" height="46"/>
</element>
<element name="lamp130" ref="lamp_130_1" state="0">
- <bounds x="208" y="5" width="48" height="42">
- </bounds>
+ <bounds x="208" y="5" width="48" height="42"/>
</element>
<element name="lamp131" ref="lamp_131_1_border" state="0">
- <bounds x="258" y="3" width="52" height="46">
- </bounds>
+ <bounds x="258" y="3" width="52" height="46"/>
</element>
<element name="lamp131" ref="lamp_131_1" state="0">
- <bounds x="260" y="5" width="48" height="42">
- </bounds>
+ <bounds x="260" y="5" width="48" height="42"/>
</element>
<element name="lamp132" ref="lamp_132_1_border" state="0">
- <bounds x="310" y="3" width="52" height="46">
- </bounds>
+ <bounds x="310" y="3" width="52" height="46"/>
</element>
<element name="lamp132" ref="lamp_132_1" state="0">
- <bounds x="312" y="5" width="48" height="42">
- </bounds>
+ <bounds x="312" y="5" width="48" height="42"/>
</element>
<element name="lamp133" ref="lamp_133_1_border" state="0">
- <bounds x="362" y="3" width="52" height="46">
- </bounds>
+ <bounds x="362" y="3" width="52" height="46"/>
</element>
<element name="lamp133" ref="lamp_133_1" state="0">
- <bounds x="364" y="5" width="48" height="42">
- </bounds>
+ <bounds x="364" y="5" width="48" height="42"/>
</element>
<element name="lamp136" ref="lamp_136_1_border" state="0">
- <bounds x="414" y="3" width="52" height="46">
- </bounds>
+ <bounds x="414" y="3" width="52" height="46"/>
</element>
<element name="lamp136" ref="lamp_136_1" state="0">
- <bounds x="416" y="5" width="48" height="42">
- </bounds>
+ <bounds x="416" y="5" width="48" height="42"/>
</element>
<element name="lamp137" ref="lamp_137_1_border" state="0">
- <bounds x="466" y="3" width="52" height="46">
- </bounds>
+ <bounds x="466" y="3" width="52" height="46"/>
</element>
<element name="lamp137" ref="lamp_137_1" state="0">
- <bounds x="468" y="5" width="48" height="42">
- </bounds>
+ <bounds x="468" y="5" width="48" height="42"/>
</element>
<element name="lamp138" ref="lamp_138_1_border" state="0">
- <bounds x="518" y="3" width="52" height="46">
- </bounds>
+ <bounds x="518" y="3" width="52" height="46"/>
</element>
<element name="lamp138" ref="lamp_138_1" state="0">
- <bounds x="520" y="5" width="48" height="42">
- </bounds>
+ <bounds x="520" y="5" width="48" height="42"/>
</element>
<element name="lamp139" ref="lamp_139_1_border" state="0">
- <bounds x="570" y="3" width="52" height="46">
- </bounds>
+ <bounds x="570" y="3" width="52" height="46"/>
</element>
<element name="lamp139" ref="lamp_139_1" state="0">
- <bounds x="572" y="5" width="48" height="42">
- </bounds>
+ <bounds x="572" y="5" width="48" height="42"/>
</element>
<element name="lamp140" ref="lamp_140_1_border" state="0">
- <bounds x="622" y="3" width="52" height="46">
- </bounds>
+ <bounds x="622" y="3" width="52" height="46"/>
</element>
<element name="lamp140" ref="lamp_140_1" state="0">
- <bounds x="624" y="5" width="48" height="42">
- </bounds>
+ <bounds x="624" y="5" width="48" height="42"/>
</element>
<element name="lamp141" ref="lamp_141_1_border" state="0">
- <bounds x="674" y="3" width="52" height="46">
- </bounds>
+ <bounds x="674" y="3" width="52" height="46"/>
</element>
<element name="lamp141" ref="lamp_141_1" state="0">
- <bounds x="676" y="5" width="48" height="42">
- </bounds>
+ <bounds x="676" y="5" width="48" height="42"/>
</element>
<element name="lamp128" ref="lamp_128_1_border" state="0">
- <bounds x="102" y="3" width="52" height="46">
- </bounds>
+ <bounds x="102" y="3" width="52" height="46"/>
</element>
<element name="lamp128" ref="lamp_128_1" state="0">
- <bounds x="104" y="5" width="48" height="42">
- </bounds>
+ <bounds x="104" y="5" width="48" height="42"/>
</element>
<element name="lamp162" ref="lamp_162_1_border" state="0">
- <bounds x="732" y="3" width="56" height="24">
- </bounds>
+ <bounds x="732" y="3" width="56" height="24"/>
</element>
<element name="lamp162" ref="lamp_162_1" state="0">
- <bounds x="734" y="5" width="52" height="20">
- </bounds>
+ <bounds x="734" y="5" width="52" height="20"/>
</element>
<element name="lamp156" ref="lamp_156_1_border" state="0">
- <bounds x="732" y="51" width="56" height="24">
- </bounds>
+ <bounds x="732" y="51" width="56" height="24"/>
</element>
<element name="lamp156" ref="lamp_156_1" state="0">
- <bounds x="734" y="53" width="52" height="20">
- </bounds>
+ <bounds x="734" y="53" width="52" height="20"/>
</element>
<element name="lamp160" ref="lamp_160_1_border" state="0">
- <bounds x="732" y="27" width="56" height="24">
- </bounds>
+ <bounds x="732" y="27" width="56" height="24"/>
</element>
<element name="lamp160" ref="lamp_160_1" state="0">
- <bounds x="734" y="29" width="52" height="20">
- </bounds>
+ <bounds x="734" y="29" width="52" height="20"/>
</element>
<element name="lamp152" ref="lamp_152_1_border" state="0">
- <bounds x="732" y="99" width="56" height="24">
- </bounds>
+ <bounds x="732" y="99" width="56" height="24"/>
</element>
<element name="lamp152" ref="lamp_152_1" state="0">
- <bounds x="734" y="101" width="52" height="20">
- </bounds>
+ <bounds x="734" y="101" width="52" height="20"/>
</element>
<element name="lamp154" ref="lamp_154_1_border" state="0">
- <bounds x="732" y="75" width="56" height="24">
- </bounds>
+ <bounds x="732" y="75" width="56" height="24"/>
</element>
<element name="lamp154" ref="lamp_154_1" state="0">
- <bounds x="734" y="77" width="52" height="20">
- </bounds>
+ <bounds x="734" y="77" width="52" height="20"/>
</element>
<element name="lamp147" ref="lamp_147_1_border" state="0">
- <bounds x="732" y="147" width="56" height="24">
- </bounds>
+ <bounds x="732" y="147" width="56" height="24"/>
</element>
<element name="lamp147" ref="lamp_147_1" state="0">
- <bounds x="734" y="149" width="52" height="20">
- </bounds>
+ <bounds x="734" y="149" width="52" height="20"/>
</element>
<element name="lamp148" ref="lamp_148_1_border" state="0">
- <bounds x="732" y="123" width="56" height="24">
- </bounds>
+ <bounds x="732" y="123" width="56" height="24"/>
</element>
<element name="lamp148" ref="lamp_148_1" state="0">
- <bounds x="734" y="125" width="52" height="20">
- </bounds>
+ <bounds x="734" y="125" width="52" height="20"/>
</element>
<element name="lamp145" ref="lamp_145_1_border" state="0">
- <bounds x="732" y="195" width="56" height="24">
- </bounds>
+ <bounds x="732" y="195" width="56" height="24"/>
</element>
<element name="lamp145" ref="lamp_145_1" state="0">
- <bounds x="734" y="197" width="52" height="20">
- </bounds>
+ <bounds x="734" y="197" width="52" height="20"/>
</element>
<element name="lamp146" ref="lamp_146_1_border" state="0">
- <bounds x="732" y="171" width="56" height="24">
- </bounds>
+ <bounds x="732" y="171" width="56" height="24"/>
</element>
<element name="lamp146" ref="lamp_146_1" state="0">
- <bounds x="734" y="173" width="52" height="20">
- </bounds>
+ <bounds x="734" y="173" width="52" height="20"/>
</element>
<element name="lamp48" ref="lamp_48_1_border" state="0">
- <bounds x="153" y="533" width="64" height="32">
- </bounds>
+ <bounds x="153" y="533" width="64" height="32"/>
</element>
<element name="lamp48" ref="lamp_48_1" state="0">
- <bounds x="155" y="535" width="60" height="28">
- </bounds>
+ <bounds x="155" y="535" width="60" height="28"/>
</element>
<element name="lamp204" ref="lamp_204_1_border" state="0">
- <bounds x="731" y="315" width="52" height="32">
- </bounds>
+ <bounds x="731" y="315" width="52" height="32"/>
</element>
<element name="lamp204" ref="lamp_204_1" state="0">
- <bounds x="733" y="317" width="48" height="28">
- </bounds>
+ <bounds x="733" y="317" width="48" height="28"/>
</element>
<element name="lamp205" ref="lamp_205_1_border" state="0">
- <bounds x="731" y="347" width="52" height="32">
- </bounds>
+ <bounds x="731" y="347" width="52" height="32"/>
</element>
<element name="lamp205" ref="lamp_205_1" state="0">
- <bounds x="733" y="349" width="48" height="28">
- </bounds>
+ <bounds x="733" y="349" width="48" height="28"/>
</element>
<element name="lamp203" ref="lamp_203_1_border" state="0">
- <bounds x="731" y="283" width="52" height="32">
- </bounds>
+ <bounds x="731" y="283" width="52" height="32"/>
</element>
<element name="lamp203" ref="lamp_203_1" state="0">
- <bounds x="733" y="285" width="48" height="28">
- </bounds>
+ <bounds x="733" y="285" width="48" height="28"/>
</element>
<element name="lamp218" ref="lamp_218_1_border" state="0">
- <bounds x="159" y="283" width="52" height="32">
- </bounds>
+ <bounds x="159" y="283" width="52" height="32"/>
</element>
<element name="lamp218" ref="lamp_218_1" state="0">
- <bounds x="161" y="285" width="48" height="28">
- </bounds>
+ <bounds x="161" y="285" width="48" height="28"/>
</element>
<element name="lamp217" ref="lamp_217_1_border" state="0">
- <bounds x="107" y="283" width="52" height="32">
- </bounds>
+ <bounds x="107" y="283" width="52" height="32"/>
</element>
<element name="lamp217" ref="lamp_217_1" state="0">
- <bounds x="109" y="285" width="48" height="28">
- </bounds>
+ <bounds x="109" y="285" width="48" height="28"/>
</element>
<element name="lamp216" ref="lamp_216_1_border" state="0">
- <bounds x="107" y="251" width="52" height="32">
- </bounds>
+ <bounds x="107" y="251" width="52" height="32"/>
</element>
<element name="lamp216" ref="lamp_216_1" state="0">
- <bounds x="109" y="253" width="48" height="28">
- </bounds>
+ <bounds x="109" y="253" width="48" height="28"/>
</element>
<element name="lamp224" ref="lamp_224_1_border" state="0">
- <bounds x="107" y="219" width="52" height="32">
- </bounds>
+ <bounds x="107" y="219" width="52" height="32"/>
</element>
<element name="lamp224" ref="lamp_224_1" state="0">
- <bounds x="109" y="221" width="48" height="28">
- </bounds>
+ <bounds x="109" y="221" width="48" height="28"/>
</element>
<element name="lamp211" ref="lamp_211_1_border" state="0">
- <bounds x="471" y="283" width="52" height="32">
- </bounds>
+ <bounds x="471" y="283" width="52" height="32"/>
</element>
<element name="lamp211" ref="lamp_211_1" state="0">
- <bounds x="473" y="285" width="48" height="28">
- </bounds>
+ <bounds x="473" y="285" width="48" height="28"/>
</element>
<element name="lamp221" ref="lamp_221_1_border" state="0">
- <bounds x="315" y="283" width="52" height="32">
- </bounds>
+ <bounds x="315" y="283" width="52" height="32"/>
</element>
<element name="lamp221" ref="lamp_221_1" state="0">
- <bounds x="317" y="285" width="48" height="28">
- </bounds>
+ <bounds x="317" y="285" width="48" height="28"/>
</element>
<element name="lamp220" ref="lamp_220_1_border" state="0">
- <bounds x="263" y="283" width="52" height="32">
- </bounds>
+ <bounds x="263" y="283" width="52" height="32"/>
</element>
<element name="lamp220" ref="lamp_220_1" state="0">
- <bounds x="265" y="285" width="48" height="28">
- </bounds>
+ <bounds x="265" y="285" width="48" height="28"/>
</element>
<element name="lamp219" ref="lamp_219_1_border" state="0">
- <bounds x="211" y="283" width="52" height="32">
- </bounds>
+ <bounds x="211" y="283" width="52" height="32"/>
</element>
<element name="lamp219" ref="lamp_219_1" state="0">
- <bounds x="213" y="285" width="48" height="28">
- </bounds>
+ <bounds x="213" y="285" width="48" height="28"/>
</element>
<element name="lamp213" ref="lamp_213_1_border" state="0">
- <bounds x="367" y="283" width="52" height="32">
- </bounds>
+ <bounds x="367" y="283" width="52" height="32"/>
</element>
<element name="lamp213" ref="lamp_213_1" state="0">
- <bounds x="369" y="285" width="48" height="28">
- </bounds>
+ <bounds x="369" y="285" width="48" height="28"/>
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="419" y="283" width="52" height="32">
- </bounds>
+ <bounds x="419" y="283" width="52" height="32"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="421" y="285" width="48" height="28">
- </bounds>
+ <bounds x="421" y="285" width="48" height="28"/>
</element>
<element name="lamp120" ref="lamp_120_1_border" state="0">
- <bounds x="6" y="254" width="46" height="27">
- </bounds>
+ <bounds x="6" y="254" width="46" height="27"/>
</element>
<element name="lamp120" ref="lamp_120_1" state="0">
- <bounds x="8" y="256" width="42" height="23">
- </bounds>
+ <bounds x="8" y="256" width="42" height="23"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="6" y="281" width="46" height="27">
- </bounds>
+ <bounds x="6" y="281" width="46" height="27"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="8" y="283" width="42" height="23">
- </bounds>
+ <bounds x="8" y="283" width="42" height="23"/>
</element>
<element name="lamp72" ref="lamp_72_1_border" state="0">
- <bounds x="6" y="416" width="46" height="27">
- </bounds>
+ <bounds x="6" y="416" width="46" height="27"/>
</element>
<element name="lamp72" ref="lamp_72_1" state="0">
- <bounds x="8" y="418" width="42" height="23">
- </bounds>
+ <bounds x="8" y="418" width="42" height="23"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="6" y="443" width="46" height="27">
- </bounds>
+ <bounds x="6" y="443" width="46" height="27"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="8" y="445" width="42" height="23">
- </bounds>
+ <bounds x="8" y="445" width="42" height="23"/>
</element>
<element name="lamp62" ref="lamp_62_1_border" state="0">
- <bounds x="6" y="470" width="46" height="27">
- </bounds>
+ <bounds x="6" y="470" width="46" height="27"/>
</element>
<element name="lamp62" ref="lamp_62_1" state="0">
- <bounds x="8" y="472" width="42" height="23">
- </bounds>
+ <bounds x="8" y="472" width="42" height="23"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="6" y="497" width="46" height="27">
- </bounds>
+ <bounds x="6" y="497" width="46" height="27"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="8" y="499" width="42" height="23">
- </bounds>
+ <bounds x="8" y="499" width="42" height="23"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="6" y="524" width="46" height="27">
- </bounds>
+ <bounds x="6" y="524" width="46" height="27"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="8" y="526" width="42" height="23">
- </bounds>
+ <bounds x="8" y="526" width="42" height="23"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="6" y="551" width="46" height="27">
- </bounds>
+ <bounds x="6" y="551" width="46" height="27"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="8" y="553" width="42" height="23">
- </bounds>
+ <bounds x="8" y="553" width="42" height="23"/>
</element>
<element name="lamp46" ref="lamp_46_1_border" state="0">
- <bounds x="6" y="578" width="46" height="27">
- </bounds>
+ <bounds x="6" y="578" width="46" height="27"/>
</element>
<element name="lamp46" ref="lamp_46_1" state="0">
- <bounds x="8" y="580" width="42" height="23">
- </bounds>
+ <bounds x="8" y="580" width="42" height="23"/>
</element>
<element name="lamp44" ref="lamp_44_1_border" state="0">
- <bounds x="6" y="605" width="46" height="27">
- </bounds>
+ <bounds x="6" y="605" width="46" height="27"/>
</element>
<element name="lamp44" ref="lamp_44_1" state="0">
- <bounds x="8" y="607" width="42" height="23">
- </bounds>
+ <bounds x="8" y="607" width="42" height="23"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="6" y="389" width="46" height="27">
- </bounds>
+ <bounds x="6" y="389" width="46" height="27"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="8" y="391" width="42" height="23">
- </bounds>
+ <bounds x="8" y="391" width="42" height="23"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="6" y="362" width="46" height="27">
- </bounds>
+ <bounds x="6" y="362" width="46" height="27"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="8" y="364" width="42" height="23">
- </bounds>
+ <bounds x="8" y="364" width="42" height="23"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="6" y="335" width="46" height="27">
- </bounds>
+ <bounds x="6" y="335" width="46" height="27"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="8" y="337" width="42" height="23">
- </bounds>
+ <bounds x="8" y="337" width="42" height="23"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="6" y="308" width="46" height="27">
- </bounds>
+ <bounds x="6" y="308" width="46" height="27"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="8" y="310" width="42" height="23">
- </bounds>
+ <bounds x="8" y="310" width="42" height="23"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="6" y="227" width="58" height="27">
- </bounds>
+ <bounds x="6" y="227" width="58" height="27"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="8" y="229" width="54" height="23">
- </bounds>
+ <bounds x="8" y="229" width="54" height="23"/>
</element>
<element name="lamp227" ref="lamp_227_1_border" state="0">
- <bounds x="3" y="187" width="52" height="32">
- </bounds>
+ <bounds x="3" y="187" width="52" height="32"/>
</element>
<element name="lamp227" ref="lamp_227_1" state="0">
- <bounds x="5" y="189" width="48" height="28">
- </bounds>
+ <bounds x="5" y="189" width="48" height="28"/>
</element>
<element name="lamp226" ref="lamp_226_1_border" state="0">
- <bounds x="55" y="187" width="52" height="32">
- </bounds>
+ <bounds x="55" y="187" width="52" height="32"/>
</element>
<element name="lamp226" ref="lamp_226_1" state="0">
- <bounds x="57" y="189" width="48" height="28">
- </bounds>
+ <bounds x="57" y="189" width="48" height="28"/>
</element>
<element name="lamp225" ref="lamp_225_1_border" state="0">
- <bounds x="107" y="187" width="52" height="32">
- </bounds>
+ <bounds x="107" y="187" width="52" height="32"/>
</element>
<element name="lamp225" ref="lamp_225_1" state="0">
- <bounds x="109" y="189" width="48" height="28">
- </bounds>
+ <bounds x="109" y="189" width="48" height="28"/>
</element>
<element name="lamp210" ref="lamp_210_1_border" state="0">
- <bounds x="471" y="251" width="52" height="32">
- </bounds>
+ <bounds x="471" y="251" width="52" height="32"/>
</element>
<element name="lamp210" ref="lamp_210_1" state="0">
- <bounds x="473" y="253" width="48" height="28">
- </bounds>
+ <bounds x="473" y="253" width="48" height="28"/>
</element>
<element name="lamp209" ref="lamp_209_1_border" state="0">
- <bounds x="523" y="251" width="52" height="32">
- </bounds>
+ <bounds x="523" y="251" width="52" height="32"/>
</element>
<element name="lamp209" ref="lamp_209_1" state="0">
- <bounds x="525" y="253" width="48" height="28">
- </bounds>
+ <bounds x="525" y="253" width="48" height="28"/>
</element>
<element name="lamp208" ref="lamp_208_1_border" state="0">
- <bounds x="575" y="251" width="52" height="32">
- </bounds>
+ <bounds x="575" y="251" width="52" height="32"/>
</element>
<element name="lamp208" ref="lamp_208_1" state="0">
- <bounds x="577" y="253" width="48" height="28">
- </bounds>
+ <bounds x="577" y="253" width="48" height="28"/>
</element>
<element name="lamp201" ref="lamp_201_1_border" state="0">
- <bounds x="679" y="251" width="52" height="32">
- </bounds>
+ <bounds x="679" y="251" width="52" height="32"/>
</element>
<element name="lamp201" ref="lamp_201_1" state="0">
- <bounds x="681" y="253" width="48" height="28">
- </bounds>
+ <bounds x="681" y="253" width="48" height="28"/>
</element>
<element name="lamp202" ref="lamp_202_1_border" state="0">
- <bounds x="731" y="251" width="52" height="32">
- </bounds>
+ <bounds x="731" y="251" width="52" height="32"/>
</element>
<element name="lamp202" ref="lamp_202_1" state="0">
- <bounds x="733" y="253" width="48" height="28">
- </bounds>
+ <bounds x="733" y="253" width="48" height="28"/>
</element>
<element name="lamp200" ref="lamp_200_1_border" state="0">
- <bounds x="627" y="251" width="52" height="32">
- </bounds>
+ <bounds x="627" y="251" width="52" height="32"/>
</element>
<element name="lamp200" ref="lamp_200_1" state="0">
- <bounds x="629" y="253" width="48" height="28">
- </bounds>
+ <bounds x="629" y="253" width="48" height="28"/>
</element>
<element name="lamp125" ref="lamp_125_1_border" state="0">
- <bounds x="263" y="347" width="52" height="32">
- </bounds>
+ <bounds x="263" y="347" width="52" height="32"/>
</element>
<element name="lamp125" ref="lamp_125_1" state="0">
- <bounds x="265" y="349" width="48" height="28">
- </bounds>
+ <bounds x="265" y="349" width="48" height="28"/>
</element>
<element name="lamp197" ref="lamp_197_1_border" state="0">
- <bounds x="679" y="347" width="52" height="32">
- </bounds>
+ <bounds x="679" y="347" width="52" height="32"/>
</element>
<element name="lamp197" ref="lamp_197_1" state="0">
- <bounds x="681" y="349" width="48" height="28">
- </bounds>
+ <bounds x="681" y="349" width="48" height="28"/>
</element>
<element name="lamp196" ref="lamp_196_1_border" state="0">
- <bounds x="627" y="347" width="52" height="32">
- </bounds>
+ <bounds x="627" y="347" width="52" height="32"/>
</element>
<element name="lamp196" ref="lamp_196_1" state="0">
- <bounds x="629" y="349" width="48" height="28">
- </bounds>
+ <bounds x="629" y="349" width="48" height="28"/>
</element>
<element name="lamp195" ref="lamp_195_1_border" state="0">
- <bounds x="575" y="347" width="52" height="32">
- </bounds>
+ <bounds x="575" y="347" width="52" height="32"/>
</element>
<element name="lamp195" ref="lamp_195_1" state="0">
- <bounds x="577" y="349" width="48" height="28">
- </bounds>
+ <bounds x="577" y="349" width="48" height="28"/>
</element>
<element name="lamp194" ref="lamp_194_1_border" state="0">
- <bounds x="523" y="347" width="52" height="32">
- </bounds>
+ <bounds x="523" y="347" width="52" height="32"/>
</element>
<element name="lamp194" ref="lamp_194_1" state="0">
- <bounds x="525" y="349" width="48" height="28">
- </bounds>
+ <bounds x="525" y="349" width="48" height="28"/>
</element>
<element name="lamp193" ref="lamp_193_1_border" state="0">
- <bounds x="471" y="347" width="52" height="32">
- </bounds>
+ <bounds x="471" y="347" width="52" height="32"/>
</element>
<element name="lamp193" ref="lamp_193_1" state="0">
- <bounds x="473" y="349" width="48" height="28">
- </bounds>
+ <bounds x="473" y="349" width="48" height="28"/>
</element>
<element name="lamp192" ref="lamp_192_1_border" state="0">
- <bounds x="419" y="347" width="52" height="32">
- </bounds>
+ <bounds x="419" y="347" width="52" height="32"/>
</element>
<element name="lamp192" ref="lamp_192_1" state="0">
- <bounds x="421" y="349" width="48" height="28">
- </bounds>
+ <bounds x="421" y="349" width="48" height="28"/>
</element>
<element name="lamp127" ref="lamp_127_1_border" state="0">
- <bounds x="367" y="347" width="52" height="32">
- </bounds>
+ <bounds x="367" y="347" width="52" height="32"/>
</element>
<element name="lamp127" ref="lamp_127_1" state="0">
- <bounds x="369" y="349" width="48" height="28">
- </bounds>
+ <bounds x="369" y="349" width="48" height="28"/>
</element>
<element name="lamp126" ref="lamp_126_1_border" state="0">
- <bounds x="315" y="347" width="52" height="32">
- </bounds>
+ <bounds x="315" y="347" width="52" height="32"/>
</element>
<element name="lamp126" ref="lamp_126_1" state="0">
- <bounds x="317" y="349" width="48" height="28">
- </bounds>
+ <bounds x="317" y="349" width="48" height="28"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="211" y="347" width="52" height="32">
- </bounds>
+ <bounds x="211" y="347" width="52" height="32"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="213" y="349" width="48" height="28">
- </bounds>
+ <bounds x="213" y="349" width="48" height="28"/>
</element>
<element name="lamp22" ref="lamp_22_1_border" state="0">
- <bounds x="103" y="347" width="56" height="32">
- </bounds>
+ <bounds x="103" y="347" width="56" height="32"/>
</element>
<element name="lamp22" ref="lamp_22_1" state="0">
- <bounds x="105" y="349" width="52" height="28">
- </bounds>
+ <bounds x="105" y="349" width="52" height="28"/>
</element>
<element name="lamp123" ref="lamp_123_1_border" state="0">
- <bounds x="159" y="347" width="52" height="32">
- </bounds>
+ <bounds x="159" y="347" width="52" height="32"/>
</element>
<element name="lamp123" ref="lamp_123_1" state="0">
- <bounds x="161" y="349" width="48" height="28">
- </bounds>
+ <bounds x="161" y="349" width="48" height="28"/>
</element>
<element name="lamp21" ref="lamp_21_1_border" state="0">
- <bounds x="115" y="379" width="32" height="24">
- </bounds>
+ <bounds x="115" y="379" width="32" height="24"/>
</element>
<element name="lamp21" ref="lamp_21_1" state="0">
- <bounds x="117" y="381" width="28" height="20">
- </bounds>
+ <bounds x="117" y="381" width="28" height="20"/>
</element>
<element name="lamp20" ref="lamp_20_1_border" state="0">
- <bounds x="115" y="403" width="32" height="24">
- </bounds>
+ <bounds x="115" y="403" width="32" height="24"/>
</element>
<element name="lamp20" ref="lamp_20_1" state="0">
- <bounds x="117" y="405" width="28" height="20">
- </bounds>
+ <bounds x="117" y="405" width="28" height="20"/>
</element>
<element name="lamp13" ref="lamp_13_1_border" state="0">
- <bounds x="115" y="427" width="32" height="24">
- </bounds>
+ <bounds x="115" y="427" width="32" height="24"/>
</element>
<element name="lamp13" ref="lamp_13_1" state="0">
- <bounds x="117" y="429" width="28" height="20">
- </bounds>
+ <bounds x="117" y="429" width="28" height="20"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
- <bounds x="115" y="451" width="32" height="24">
- </bounds>
+ <bounds x="115" y="451" width="32" height="24"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
- <bounds x="117" y="453" width="28" height="20">
- </bounds>
+ <bounds x="117" y="453" width="28" height="20"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
- <bounds x="115" y="475" width="32" height="24">
- </bounds>
+ <bounds x="115" y="475" width="32" height="24"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
- <bounds x="117" y="477" width="28" height="20">
- </bounds>
+ <bounds x="117" y="477" width="28" height="20"/>
</element>
<element name="lamp7" ref="lamp_7_1_border" state="0">
- <bounds x="115" y="499" width="32" height="24">
- </bounds>
+ <bounds x="115" y="499" width="32" height="24"/>
</element>
<element name="lamp7" ref="lamp_7_1" state="0">
- <bounds x="117" y="501" width="28" height="20">
- </bounds>
+ <bounds x="117" y="501" width="28" height="20"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
- <bounds x="115" y="523" width="32" height="24">
- </bounds>
+ <bounds x="115" y="523" width="32" height="24"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
- <bounds x="117" y="525" width="28" height="20">
- </bounds>
+ <bounds x="117" y="525" width="28" height="20"/>
</element>
<element name="lamp5" ref="lamp_5_1_border" state="0">
- <bounds x="115" y="547" width="32" height="24">
- </bounds>
+ <bounds x="115" y="547" width="32" height="24"/>
</element>
<element name="lamp5" ref="lamp_5_1" state="0">
- <bounds x="117" y="549" width="28" height="20">
- </bounds>
+ <bounds x="117" y="549" width="28" height="20"/>
</element>
<element name="lamp36" ref="lamp_36_1_border" state="0">
- <bounds x="110" y="571" width="42" height="32">
- </bounds>
+ <bounds x="110" y="571" width="42" height="32"/>
</element>
<element name="lamp36" ref="lamp_36_1" state="0">
- <bounds x="112" y="573" width="38" height="28">
- </bounds>
+ <bounds x="112" y="573" width="38" height="28"/>
</element>
<element name="lamp229" ref="lamp_229_1_border" state="0">
- <bounds x="3" y="123" width="52" height="32">
- </bounds>
+ <bounds x="3" y="123" width="52" height="32"/>
</element>
<element name="lamp229" ref="lamp_229_1" state="0">
- <bounds x="5" y="125" width="48" height="28">
- </bounds>
+ <bounds x="5" y="125" width="48" height="28"/>
</element>
<element name="lamp228" ref="lamp_228_1_border" state="0">
- <bounds x="3" y="155" width="52" height="32">
- </bounds>
+ <bounds x="3" y="155" width="52" height="32"/>
</element>
<element name="lamp228" ref="lamp_228_1" state="0">
- <bounds x="5" y="157" width="48" height="28">
- </bounds>
+ <bounds x="5" y="157" width="48" height="28"/>
</element>
<element name="lamp237" ref="lamp_237_1_border" state="0">
- <bounds x="3" y="91" width="52" height="32">
- </bounds>
+ <bounds x="3" y="91" width="52" height="32"/>
</element>
<element name="lamp237" ref="lamp_237_1" state="0">
- <bounds x="5" y="93" width="48" height="28">
- </bounds>
+ <bounds x="5" y="93" width="48" height="28"/>
</element>
<element name="lamp236" ref="lamp_236_1_border" state="0">
- <bounds x="3" y="59" width="52" height="32">
- </bounds>
+ <bounds x="3" y="59" width="52" height="32"/>
</element>
<element name="lamp236" ref="lamp_236_1" state="0">
- <bounds x="5" y="61" width="48" height="28">
- </bounds>
+ <bounds x="5" y="61" width="48" height="28"/>
</element>
<element name="lamp235" ref="lamp_235_1_border" state="0">
- <bounds x="55" y="59" width="52" height="32">
- </bounds>
+ <bounds x="55" y="59" width="52" height="32"/>
</element>
<element name="lamp235" ref="lamp_235_1" state="0">
- <bounds x="57" y="61" width="48" height="28">
- </bounds>
+ <bounds x="57" y="61" width="48" height="28"/>
</element>
<element name="lamp234" ref="lamp_234_1_border" state="0">
- <bounds x="107" y="59" width="46" height="32">
- </bounds>
+ <bounds x="107" y="59" width="46" height="32"/>
</element>
<element name="lamp234" ref="lamp_234_1" state="0">
- <bounds x="109" y="61" width="42" height="28">
- </bounds>
+ <bounds x="109" y="61" width="42" height="28"/>
</element>
<element name="lamp233" ref="lamp_233_1_border" state="0">
- <bounds x="153" y="59" width="46" height="32">
- </bounds>
+ <bounds x="153" y="59" width="46" height="32"/>
</element>
<element name="lamp233" ref="lamp_233_1" state="0">
- <bounds x="155" y="61" width="42" height="28">
- </bounds>
+ <bounds x="155" y="61" width="42" height="28"/>
</element>
<element name="lamp240" ref="lamp_240_1_border" state="0">
- <bounds x="199" y="59" width="46" height="32">
- </bounds>
+ <bounds x="199" y="59" width="46" height="32"/>
</element>
<element name="lamp240" ref="lamp_240_1" state="0">
- <bounds x="201" y="61" width="42" height="28">
- </bounds>
+ <bounds x="201" y="61" width="42" height="28"/>
</element>
<element name="lamp241" ref="lamp_241_1_border" state="0">
- <bounds x="245" y="59" width="46" height="32">
- </bounds>
+ <bounds x="245" y="59" width="46" height="32"/>
</element>
<element name="lamp241" ref="lamp_241_1" state="0">
- <bounds x="247" y="61" width="42" height="28">
- </bounds>
+ <bounds x="247" y="61" width="42" height="28"/>
</element>
<element name="lamp242" ref="lamp_242_1_border" state="0">
- <bounds x="291" y="59" width="52" height="32">
- </bounds>
+ <bounds x="291" y="59" width="52" height="32"/>
</element>
<element name="lamp242" ref="lamp_242_1" state="0">
- <bounds x="293" y="61" width="48" height="28">
- </bounds>
+ <bounds x="293" y="61" width="48" height="28"/>
</element>
<element name="lamp243" ref="lamp_243_1_border" state="0">
- <bounds x="343" y="59" width="52" height="32">
- </bounds>
+ <bounds x="343" y="59" width="52" height="32"/>
</element>
<element name="lamp243" ref="lamp_243_1" state="0">
- <bounds x="345" y="61" width="48" height="28">
- </bounds>
+ <bounds x="345" y="61" width="48" height="28"/>
</element>
<element name="lamp244" ref="lamp_244_1_border" state="0">
- <bounds x="395" y="59" width="46" height="32">
- </bounds>
+ <bounds x="395" y="59" width="46" height="32"/>
</element>
<element name="lamp244" ref="lamp_244_1" state="0">
- <bounds x="397" y="61" width="42" height="28">
- </bounds>
+ <bounds x="397" y="61" width="42" height="28"/>
</element>
<element name="lamp245" ref="lamp_245_1_border" state="0">
- <bounds x="441" y="59" width="52" height="32">
- </bounds>
+ <bounds x="441" y="59" width="52" height="32"/>
</element>
<element name="lamp245" ref="lamp_245_1" state="0">
- <bounds x="443" y="61" width="48" height="28">
- </bounds>
+ <bounds x="443" y="61" width="48" height="28"/>
</element>
<element name="lamp253" ref="lamp_253_1_border" state="0">
- <bounds x="493" y="59" width="52" height="32">
- </bounds>
+ <bounds x="493" y="59" width="52" height="32"/>
</element>
<element name="lamp253" ref="lamp_253_1" state="0">
- <bounds x="495" y="61" width="48" height="28">
- </bounds>
+ <bounds x="495" y="61" width="48" height="28"/>
</element>
<element name="lamp252" ref="lamp_252_1_border" state="0">
- <bounds x="545" y="59" width="46" height="32">
- </bounds>
+ <bounds x="545" y="59" width="46" height="32"/>
</element>
<element name="lamp252" ref="lamp_252_1" state="0">
- <bounds x="547" y="61" width="42" height="28">
- </bounds>
+ <bounds x="547" y="61" width="42" height="28"/>
</element>
<element name="lamp251" ref="lamp_251_1_border" state="0">
- <bounds x="591" y="59" width="52" height="32">
- </bounds>
+ <bounds x="591" y="59" width="52" height="32"/>
</element>
<element name="lamp251" ref="lamp_251_1" state="0">
- <bounds x="593" y="61" width="48" height="28">
- </bounds>
+ <bounds x="593" y="61" width="48" height="28"/>
</element>
<element name="lamp250" ref="lamp_250_1_border" state="0">
- <bounds x="643" y="59" width="52" height="32">
- </bounds>
+ <bounds x="643" y="59" width="52" height="32"/>
</element>
<element name="lamp250" ref="lamp_250_1" state="0">
- <bounds x="645" y="61" width="48" height="28">
- </bounds>
+ <bounds x="645" y="61" width="48" height="28"/>
</element>
<element name="lamp85" ref="lamp_85_1_border" state="0">
- <bounds x="534" y="106" width="32" height="26">
- </bounds>
+ <bounds x="534" y="106" width="32" height="26"/>
</element>
<element name="lamp85" ref="lamp_85_1" state="0">
- <bounds x="536" y="108" width="28" height="22">
- </bounds>
+ <bounds x="536" y="108" width="28" height="22"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="539" y="132" width="32" height="26">
- </bounds>
+ <bounds x="539" y="132" width="32" height="26"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="541" y="134" width="28" height="22">
- </bounds>
+ <bounds x="541" y="134" width="28" height="22"/>
</element>
<element name="lamp93" ref="lamp_93_1_border" state="0">
- <bounds x="544" y="158" width="32" height="26">
- </bounds>
+ <bounds x="544" y="158" width="32" height="26"/>
</element>
<element name="lamp93" ref="lamp_93_1" state="0">
- <bounds x="546" y="160" width="28" height="22">
- </bounds>
+ <bounds x="546" y="160" width="28" height="22"/>
</element>
<element name="lamp94" ref="lamp_94_1_border" state="0">
- <bounds x="539" y="184" width="32" height="26">
- </bounds>
+ <bounds x="539" y="184" width="32" height="26"/>
</element>
<element name="lamp94" ref="lamp_94_1" state="0">
- <bounds x="541" y="186" width="28" height="22">
- </bounds>
+ <bounds x="541" y="186" width="28" height="22"/>
</element>
<element name="lamp95" ref="lamp_95_1_border" state="0">
- <bounds x="534" y="210" width="32" height="26">
- </bounds>
+ <bounds x="534" y="210" width="32" height="26"/>
</element>
<element name="lamp95" ref="lamp_95_1" state="0">
- <bounds x="536" y="212" width="28" height="22">
- </bounds>
+ <bounds x="536" y="212" width="28" height="22"/>
</element>
<element name="lamp111" ref="lamp_111_1_border" state="0">
- <bounds x="502" y="101" width="32" height="26">
- </bounds>
+ <bounds x="502" y="101" width="32" height="26"/>
</element>
<element name="lamp111" ref="lamp_111_1" state="0">
- <bounds x="504" y="103" width="28" height="22">
- </bounds>
+ <bounds x="504" y="103" width="28" height="22"/>
</element>
<element name="lamp110" ref="lamp_110_1_border" state="0">
- <bounds x="470" y="106" width="32" height="26">
- </bounds>
+ <bounds x="470" y="106" width="32" height="26"/>
</element>
<element name="lamp110" ref="lamp_110_1" state="0">
- <bounds x="472" y="108" width="28" height="22">
- </bounds>
+ <bounds x="472" y="108" width="28" height="22"/>
</element>
<element name="lamp109" ref="lamp_109_1_border" state="0">
- <bounds x="465" y="132" width="32" height="26">
- </bounds>
+ <bounds x="465" y="132" width="32" height="26"/>
</element>
<element name="lamp109" ref="lamp_109_1" state="0">
- <bounds x="467" y="134" width="28" height="22">
- </bounds>
+ <bounds x="467" y="134" width="28" height="22"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="460" y="158" width="32" height="26">
- </bounds>
+ <bounds x="460" y="158" width="32" height="26"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="462" y="160" width="28" height="22">
- </bounds>
+ <bounds x="462" y="160" width="28" height="22"/>
</element>
<element name="lamp103" ref="lamp_103_1_border" state="0">
- <bounds x="465" y="184" width="32" height="26">
- </bounds>
+ <bounds x="465" y="184" width="32" height="26"/>
</element>
<element name="lamp103" ref="lamp_103_1" state="0">
- <bounds x="467" y="186" width="28" height="22">
- </bounds>
+ <bounds x="467" y="186" width="28" height="22"/>
</element>
<element name="lamp102" ref="lamp_102_1_border" state="0">
- <bounds x="470" y="210" width="32" height="26">
- </bounds>
+ <bounds x="470" y="210" width="32" height="26"/>
</element>
<element name="lamp102" ref="lamp_102_1" state="0">
- <bounds x="472" y="212" width="28" height="22">
- </bounds>
+ <bounds x="472" y="212" width="28" height="22"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="502" y="215" width="32" height="26">
- </bounds>
+ <bounds x="502" y="215" width="32" height="26"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="504" y="217" width="28" height="22">
- </bounds>
+ <bounds x="504" y="217" width="28" height="22"/>
</element>
<element name="lamp90" ref="lamp_90_1_border" state="0">
- <bounds x="380" y="102" width="42" height="32">
- </bounds>
+ <bounds x="380" y="102" width="42" height="32"/>
</element>
<element name="lamp90" ref="lamp_90_1" state="0">
- <bounds x="382" y="104" width="38" height="28">
- </bounds>
+ <bounds x="382" y="104" width="38" height="28"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="224" y="102" width="52" height="32">
- </bounds>
+ <bounds x="224" y="102" width="52" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="226" y="104" width="48" height="28">
- </bounds>
+ <bounds x="226" y="104" width="48" height="28"/>
</element>
<element name="lamp92" ref="lamp_92_1_border" state="0">
- <bounds x="328" y="102" width="52" height="32">
- </bounds>
+ <bounds x="328" y="102" width="52" height="32"/>
</element>
<element name="lamp92" ref="lamp_92_1" state="0">
- <bounds x="330" y="104" width="48" height="28">
- </bounds>
+ <bounds x="330" y="104" width="48" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="276" y="102" width="52" height="32">
- </bounds>
+ <bounds x="276" y="102" width="52" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="278" y="104" width="48" height="28">
- </bounds>
+ <bounds x="278" y="104" width="48" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="227" y="134" width="62" height="32">
- </bounds>
+ <bounds x="227" y="134" width="62" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="229" y="136" width="58" height="28">
- </bounds>
+ <bounds x="229" y="136" width="58" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="289" y="134" width="58" height="32">
- </bounds>
+ <bounds x="289" y="134" width="58" height="32"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="291" y="136" width="54" height="28">
- </bounds>
+ <bounds x="291" y="136" width="54" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="347" y="134" width="72" height="32">
- </bounds>
+ <bounds x="347" y="134" width="72" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="349" y="136" width="68" height="28">
- </bounds>
+ <bounds x="349" y="136" width="68" height="28"/>
</element>
<element name="lamp91" ref="lamp_91_1_border" state="0">
- <bounds x="349" y="166" width="52" height="32">
- </bounds>
+ <bounds x="349" y="166" width="52" height="32"/>
</element>
<element name="lamp91" ref="lamp_91_1" state="0">
- <bounds x="351" y="168" width="48" height="28">
- </bounds>
+ <bounds x="351" y="168" width="48" height="28"/>
</element>
<element name="lamp50" ref="lamp_50_1_border" state="0">
- <bounds x="297" y="166" width="52" height="32">
- </bounds>
+ <bounds x="297" y="166" width="52" height="32"/>
</element>
<element name="lamp50" ref="lamp_50_1" state="0">
- <bounds x="299" y="168" width="48" height="28">
- </bounds>
+ <bounds x="299" y="168" width="48" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="245" y="166" width="52" height="32">
- </bounds>
+ <bounds x="245" y="166" width="52" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="247" y="168" width="48" height="28">
- </bounds>
+ <bounds x="247" y="168" width="48" height="28"/>
</element>
<element name="lamp168" ref="lamp_168_1_border" state="0">
- <bounds x="69" y="113" width="42" height="24">
- </bounds>
+ <bounds x="69" y="113" width="42" height="24"/>
</element>
<element name="lamp168" ref="lamp_168_1" state="0">
- <bounds x="71" y="115" width="38" height="20">
- </bounds>
+ <bounds x="71" y="115" width="38" height="20"/>
</element>
<element name="lamp184" ref="lamp_184_1_border" state="0">
- <bounds x="153" y="113" width="42" height="24">
- </bounds>
+ <bounds x="153" y="113" width="42" height="24"/>
</element>
<element name="lamp184" ref="lamp_184_1" state="0">
- <bounds x="155" y="115" width="38" height="20">
- </bounds>
+ <bounds x="155" y="115" width="38" height="20"/>
</element>
<element name="lamp176" ref="lamp_176_1_border" state="0">
- <bounds x="111" y="113" width="42" height="24">
- </bounds>
+ <bounds x="111" y="113" width="42" height="24"/>
</element>
<element name="lamp176" ref="lamp_176_1" state="0">
- <bounds x="113" y="115" width="38" height="20">
- </bounds>
+ <bounds x="113" y="115" width="38" height="20"/>
</element>
<element name="lamp186" ref="lamp_186_1_border" state="0">
- <bounds x="153" y="161" width="42" height="24">
- </bounds>
+ <bounds x="153" y="161" width="42" height="24"/>
</element>
<element name="lamp186" ref="lamp_186_1" state="0">
- <bounds x="155" y="163" width="38" height="20">
- </bounds>
+ <bounds x="155" y="163" width="38" height="20"/>
</element>
<element name="lamp178" ref="lamp_178_1_border" state="0">
- <bounds x="111" y="161" width="42" height="24">
- </bounds>
+ <bounds x="111" y="161" width="42" height="24"/>
</element>
<element name="lamp178" ref="lamp_178_1" state="0">
- <bounds x="113" y="163" width="38" height="20">
- </bounds>
+ <bounds x="113" y="163" width="38" height="20"/>
</element>
<element name="lamp170" ref="lamp_170_1_border" state="0">
- <bounds x="69" y="161" width="42" height="24">
- </bounds>
+ <bounds x="69" y="161" width="42" height="24"/>
</element>
<element name="lamp170" ref="lamp_170_1" state="0">
- <bounds x="71" y="163" width="38" height="20">
- </bounds>
+ <bounds x="71" y="163" width="38" height="20"/>
</element>
<element name="lamp169" ref="lamp_169_1_border" state="0">
- <bounds x="69" y="137" width="42" height="24">
- </bounds>
+ <bounds x="69" y="137" width="42" height="24"/>
</element>
<element name="lamp169" ref="lamp_169_1" state="0">
- <bounds x="71" y="139" width="38" height="20">
- </bounds>
+ <bounds x="71" y="139" width="38" height="20"/>
</element>
<element name="lamp185" ref="lamp_185_1_border" state="0">
- <bounds x="153" y="137" width="42" height="24">
- </bounds>
+ <bounds x="153" y="137" width="42" height="24"/>
</element>
<element name="lamp185" ref="lamp_185_1" state="0">
- <bounds x="155" y="139" width="38" height="20">
- </bounds>
+ <bounds x="155" y="139" width="38" height="20"/>
</element>
<element name="lamp177" ref="lamp_177_1_border" state="0">
- <bounds x="111" y="137" width="42" height="24">
- </bounds>
+ <bounds x="111" y="137" width="42" height="24"/>
</element>
<element name="lamp177" ref="lamp_177_1" state="0">
- <bounds x="113" y="139" width="38" height="20">
- </bounds>
+ <bounds x="113" y="139" width="38" height="20"/>
</element>
<element name="lamp76" ref="lamp_76_1_border" state="0">
- <bounds x="202" y="224" width="30" height="26">
- </bounds>
+ <bounds x="202" y="224" width="30" height="26"/>
</element>
<element name="lamp76" ref="lamp_76_1" state="0">
- <bounds x="204" y="226" width="26" height="22">
- </bounds>
+ <bounds x="204" y="226" width="26" height="22"/>
</element>
<element name="lamp77" ref="lamp_77_1_border" state="0">
- <bounds x="232" y="224" width="30" height="26">
- </bounds>
+ <bounds x="232" y="224" width="30" height="26"/>
</element>
<element name="lamp77" ref="lamp_77_1" state="0">
- <bounds x="234" y="226" width="26" height="22">
- </bounds>
+ <bounds x="234" y="226" width="26" height="22"/>
</element>
<element name="lamp78" ref="lamp_78_1_border" state="0">
- <bounds x="262" y="224" width="30" height="26">
- </bounds>
+ <bounds x="262" y="224" width="30" height="26"/>
</element>
<element name="lamp78" ref="lamp_78_1" state="0">
- <bounds x="264" y="226" width="26" height="22">
- </bounds>
+ <bounds x="264" y="226" width="26" height="22"/>
</element>
<element name="lamp79" ref="lamp_79_1_border" state="0">
- <bounds x="292" y="224" width="30" height="26">
- </bounds>
+ <bounds x="292" y="224" width="30" height="26"/>
</element>
<element name="lamp79" ref="lamp_79_1" state="0">
- <bounds x="294" y="226" width="26" height="22">
- </bounds>
+ <bounds x="294" y="226" width="26" height="22"/>
</element>
<element name="lamp87" ref="lamp_87_1_border" state="0">
- <bounds x="322" y="224" width="30" height="26">
- </bounds>
+ <bounds x="322" y="224" width="30" height="26"/>
</element>
<element name="lamp87" ref="lamp_87_1" state="0">
- <bounds x="324" y="226" width="26" height="22">
- </bounds>
+ <bounds x="324" y="226" width="26" height="22"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="232" y="250" width="30" height="26">
- </bounds>
+ <bounds x="232" y="250" width="30" height="26"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="234" y="252" width="26" height="22">
- </bounds>
+ <bounds x="234" y="252" width="26" height="22"/>
</element>
<element name="lamp69" ref="lamp_69_1_border" state="0">
- <bounds x="262" y="250" width="30" height="26">
- </bounds>
+ <bounds x="262" y="250" width="30" height="26"/>
</element>
<element name="lamp69" ref="lamp_69_1" state="0">
- <bounds x="264" y="252" width="26" height="22">
- </bounds>
+ <bounds x="264" y="252" width="26" height="22"/>
</element>
<element name="lamp70" ref="lamp_70_1_border" state="0">
- <bounds x="292" y="250" width="30" height="26">
- </bounds>
+ <bounds x="292" y="250" width="30" height="26"/>
</element>
<element name="lamp70" ref="lamp_70_1" state="0">
- <bounds x="294" y="252" width="26" height="22">
- </bounds>
+ <bounds x="294" y="252" width="26" height="22"/>
</element>
<element name="lamp71" ref="lamp_71_1_border" state="0">
- <bounds x="322" y="250" width="30" height="26">
- </bounds>
+ <bounds x="322" y="250" width="30" height="26"/>
</element>
<element name="lamp71" ref="lamp_71_1" state="0">
- <bounds x="324" y="252" width="26" height="22">
- </bounds>
+ <bounds x="324" y="252" width="26" height="22"/>
</element>
<element name="lamp67" ref="lamp_67_1_border" state="0">
- <bounds x="202" y="250" width="30" height="26">
- </bounds>
+ <bounds x="202" y="250" width="30" height="26"/>
</element>
<element name="lamp67" ref="lamp_67_1" state="0">
- <bounds x="204" y="252" width="26" height="22">
- </bounds>
+ <bounds x="204" y="252" width="26" height="22"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
- <bounds x="658" y="414" width="52" height="30">
- </bounds>
+ <bounds x="658" y="414" width="52" height="30"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
- <bounds x="660" y="416" width="48" height="26">
- </bounds>
+ <bounds x="660" y="416" width="48" height="26"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="435" y="319" width="42" height="24">
- </bounds>
+ <bounds x="435" y="319" width="42" height="24"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="437" y="321" width="38" height="20">
- </bounds>
+ <bounds x="437" y="321" width="38" height="20"/>
</element>
<element name="lamp119" ref="lamp_119_1_border" state="0">
- <bounds x="320" y="319" width="42" height="24">
- </bounds>
+ <bounds x="320" y="319" width="42" height="24"/>
</element>
<element name="lamp119" ref="lamp_119_1" state="0">
- <bounds x="322" y="321" width="38" height="20">
- </bounds>
+ <bounds x="322" y="321" width="38" height="20"/>
</element>
<element name="lamp35" ref="lamp_35_1_border" state="0">
- <bounds x="166" y="380" width="46" height="24">
- </bounds>
+ <bounds x="166" y="380" width="46" height="24"/>
</element>
<element name="lamp35" ref="lamp_35_1" state="0">
- <bounds x="168" y="382" width="42" height="20">
- </bounds>
+ <bounds x="168" y="382" width="42" height="20"/>
</element>
<element name="lamp56" ref="colour_button_195_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="716" y="544" width="42" height="27">
- </bounds>
+ <bounds x="716" y="544" width="42" height="27"/>
</element>
<element name="lamp56" ref="colour_button_195" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="718" y="546" width="38" height="23">
- </bounds>
+ <bounds x="718" y="546" width="38" height="23"/>
</element>
<element name="lamp42" ref="colour_button_196_border" state="0" inputtag="BLACK1" inputmask="0x01">
- <bounds x="659" y="291" width="62" height="50">
- </bounds>
+ <bounds x="659" y="291" width="62" height="50"/>
</element>
<element name="lamp42" ref="colour_button_196" state="0" inputtag="BLACK1" inputmask="0x01">
- <bounds x="661" y="293" width="58" height="46">
- </bounds>
+ <bounds x="661" y="293" width="58" height="46"/>
</element>
<element name="lamp25" ref="colour_button_197_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="232" y="606" width="82" height="38">
- </bounds>
+ <bounds x="232" y="606" width="82" height="38"/>
</element>
<element name="lamp25" ref="colour_button_197" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="234" y="608" width="78" height="34">
- </bounds>
+ <bounds x="234" y="608" width="78" height="34"/>
</element>
<element name="lamp24" ref="colour_button_198_border" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="146" y="606" width="82" height="38">
- </bounds>
+ <bounds x="146" y="606" width="82" height="38"/>
</element>
<element name="lamp24" ref="colour_button_198" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="148" y="608" width="78" height="34">
- </bounds>
+ <bounds x="148" y="608" width="78" height="34"/>
</element>
<element name="lamp26" ref="colour_button_199_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="314" y="606" width="82" height="38">
- </bounds>
+ <bounds x="314" y="606" width="82" height="38"/>
</element>
<element name="lamp26" ref="colour_button_199" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="316" y="608" width="78" height="34">
- </bounds>
+ <bounds x="316" y="608" width="78" height="34"/>
</element>
<element name="lamp32" ref="colour_button_200_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="396" y="606" width="82" height="38">
- </bounds>
+ <bounds x="396" y="606" width="82" height="38"/>
</element>
<element name="lamp32" ref="colour_button_200" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="398" y="608" width="78" height="34">
- </bounds>
+ <bounds x="398" y="608" width="78" height="34"/>
</element>
<element name="lamp33" ref="colour_button_201_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="478" y="606" width="82" height="38">
- </bounds>
+ <bounds x="478" y="606" width="82" height="38"/>
</element>
<element name="lamp33" ref="colour_button_201" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="480" y="608" width="78" height="34">
- </bounds>
+ <bounds x="480" y="608" width="78" height="34"/>
</element>
<element name="lamp34" ref="colour_button_202_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="572" y="579" width="82" height="27">
- </bounds>
+ <bounds x="572" y="579" width="82" height="27"/>
</element>
<element name="lamp34" ref="colour_button_202" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="574" y="581" width="78" height="23">
- </bounds>
+ <bounds x="574" y="581" width="78" height="23"/>
</element>
<element name="lamp40" ref="colour_button_203_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="572" y="606" width="82" height="38">
- </bounds>
+ <bounds x="572" y="606" width="82" height="38"/>
</element>
<element name="lamp40" ref="colour_button_203" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="574" y="608" width="78" height="34">
- </bounds>
+ <bounds x="574" y="608" width="78" height="34"/>
</element>
<element name="lamp41" ref="colour_button_204_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="661" y="606" width="82" height="38">
- </bounds>
+ <bounds x="661" y="606" width="82" height="38"/>
</element>
<element name="lamp41" ref="colour_button_204" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="663" y="608" width="78" height="34">
- </bounds>
+ <bounds x="663" y="608" width="78" height="34"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="624" y="301" width="30" height="40">
- </bounds>
+ <bounds x="624" y="301" width="30" height="40"/>
</element>
<element name="digit7" ref="led_digit_red">
- <bounds x="624" y="301" width="30" height="40">
- </bounds>
+ <bounds x="624" y="301" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="624" y="301" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="624" y="301" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="564" y="301" width="30" height="40">
- </bounds>
+ <bounds x="564" y="301" width="30" height="40"/>
</element>
<element name="digit5" ref="led_digit_red">
- <bounds x="564" y="301" width="30" height="40">
- </bounds>
+ <bounds x="564" y="301" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="564" y="301" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="564" y="301" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="594" y="301" width="30" height="40">
- </bounds>
+ <bounds x="594" y="301" width="30" height="40"/>
</element>
<element name="digit6" ref="led_digit_red">
- <bounds x="594" y="301" width="30" height="40">
- </bounds>
+ <bounds x="594" y="301" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="594" y="301" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="594" y="301" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="661" y="115" width="30" height="40">
- </bounds>
+ <bounds x="661" y="115" width="30" height="40"/>
</element>
<element name="digit14" ref="led_digit_red">
- <bounds x="661" y="115" width="30" height="40">
- </bounds>
+ <bounds x="661" y="115" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="661" y="115" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="661" y="115" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="631" y="115" width="30" height="40">
- </bounds>
+ <bounds x="631" y="115" width="30" height="40"/>
</element>
<element name="digit13" ref="led_digit_red">
- <bounds x="631" y="115" width="30" height="40">
- </bounds>
+ <bounds x="631" y="115" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="631" y="115" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="631" y="115" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="691" y="115" width="30" height="40">
- </bounds>
+ <bounds x="691" y="115" width="30" height="40"/>
</element>
<element name="digit15" ref="led_digit_red">
- <bounds x="691" y="115" width="30" height="40">
- </bounds>
+ <bounds x="691" y="115" width="30" height="40"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="691" y="115" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="691" y="115" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="641" y="206" width="26" height="36">
- </bounds>
+ <bounds x="641" y="206" width="26" height="36"/>
</element>
<element name="digit10" ref="led_digit_red">
- <bounds x="641" y="206" width="26" height="36">
- </bounds>
+ <bounds x="641" y="206" width="26" height="36"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="641" y="206" width="26" height="36">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="641" y="206" width="26" height="36"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="665" y="206" width="26" height="36">
- </bounds>
+ <bounds x="665" y="206" width="26" height="36"/>
</element>
<element name="digit11" ref="led_digit_red">
- <bounds x="665" y="206" width="26" height="36">
- </bounds>
+ <bounds x="665" y="206" width="26" height="36"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="665" y="206" width="26" height="36">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="665" y="206" width="26" height="36"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="691" y="206" width="26" height="36">
- </bounds>
+ <bounds x="691" y="206" width="26" height="36"/>
</element>
<element name="digit12" ref="led_digit_red">
- <bounds x="691" y="206" width="26" height="36">
- </bounds>
+ <bounds x="691" y="206" width="26" height="36"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="691" y="206" width="26" height="36">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="691" y="206" width="26" height="36"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="414" y="241" width="30" height="40">
- </bounds>
+ <bounds x="414" y="241" width="30" height="40"/>
</element>
<element name="digit9" ref="led_digit_green">
- <bounds x="414" y="241" width="30" height="40">
- </bounds>
+ <bounds x="414" y="241" width="30" height="40"/>
</element>
<element ref="led_digit_rect_green">
- <bounds x="414" y="241" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="414" y="241" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="384" y="241" width="30" height="40">
- </bounds>
+ <bounds x="384" y="241" width="30" height="40"/>
</element>
<element name="digit8" ref="led_digit_green">
- <bounds x="384" y="241" width="30" height="40">
- </bounds>
+ <bounds x="384" y="241" width="30" height="40"/>
</element>
<element ref="led_digit_rect_green">
- <bounds x="384" y="241" width="30" height="40">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="384" y="241" width="30" height="40"/>
+ <color alpha="0.1"/>
</element>
<element ref="vfd0_background">
- <bounds x="261" y="381" width="272" height="30">
- </bounds>
+ <bounds x="261" y="381" width="272" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
- <bounds x="261" y="381" width="17" height="30">
- </bounds>
+ <bounds x="261" y="381" width="17" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
- <bounds x="278" y="381" width="17" height="30">
- </bounds>
+ <bounds x="278" y="381" width="17" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
- <bounds x="295" y="381" width="17" height="30">
- </bounds>
+ <bounds x="295" y="381" width="17" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
- <bounds x="312" y="381" width="17" height="30">
- </bounds>
+ <bounds x="312" y="381" width="17" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
- <bounds x="329" y="381" width="17" height="30">
- </bounds>
+ <bounds x="329" y="381" width="17" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
- <bounds x="346" y="381" width="17" height="30">
- </bounds>
+ <bounds x="346" y="381" width="17" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
- <bounds x="363" y="381" width="17" height="30">
- </bounds>
+ <bounds x="363" y="381" width="17" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
- <bounds x="380" y="381" width="17" height="30">
- </bounds>
+ <bounds x="380" y="381" width="17" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
- <bounds x="397" y="381" width="17" height="30">
- </bounds>
+ <bounds x="397" y="381" width="17" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
- <bounds x="414" y="381" width="17" height="30">
- </bounds>
+ <bounds x="414" y="381" width="17" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
- <bounds x="431" y="381" width="17" height="30">
- </bounds>
+ <bounds x="431" y="381" width="17" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
- <bounds x="448" y="381" width="17" height="30">
- </bounds>
+ <bounds x="448" y="381" width="17" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
- <bounds x="465" y="381" width="17" height="30">
- </bounds>
+ <bounds x="465" y="381" width="17" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
- <bounds x="482" y="381" width="17" height="30">
- </bounds>
+ <bounds x="482" y="381" width="17" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
- <bounds x="499" y="381" width="17" height="30">
- </bounds>
+ <bounds x="499" y="381" width="17" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
- <bounds x="516" y="381" width="17" height="30">
- </bounds>
+ <bounds x="516" y="381" width="17" height="30"/>
</element>
<element name="label5" ref="label_5">
- <bounds x="2" y="2" width="91" height="44">
- </bounds>
+ <bounds x="2" y="2" width="91" height="44"/>
</element>
<element name="label28" ref="label_28">
- <bounds x="206" y="498" width="25" height="26">
- </bounds>
+ <bounds x="206" y="498" width="25" height="26"/>
</element>
<element name="label29" ref="label_29">
- <bounds x="561" y="498" width="25" height="26">
- </bounds>
+ <bounds x="561" y="498" width="25" height="26"/>
</element>
<element name="label37" ref="label_37">
- <bounds x="527" y="285" width="38" height="67">
- </bounds>
+ <bounds x="527" y="285" width="38" height="67"/>
</element>
<element name="label41" ref="label_41">
- <bounds x="558" y="284" width="84" height="16">
- </bounds>
+ <bounds x="558" y="284" width="84" height="16"/>
</element>
<element name="label58" ref="label_58">
- <bounds x="53" y="605" width="45" height="26">
- </bounds>
+ <bounds x="53" y="605" width="45" height="26"/>
</element>
<element name="label64" ref="label_64">
- <bounds x="53" y="552" width="45" height="26">
- </bounds>
+ <bounds x="53" y="552" width="45" height="26"/>
</element>
<element name="label127" ref="label_127">
- <bounds x="594" y="99" width="38" height="67">
- </bounds>
+ <bounds x="594" y="99" width="38" height="67"/>
</element>
<element name="label129" ref="label_129">
- <bounds x="626" y="94" width="78" height="22">
- </bounds>
+ <bounds x="626" y="94" width="78" height="22"/>
</element>
<element name="label131" ref="label_131">
- <bounds x="640" y="187" width="63" height="19">
- </bounds>
+ <bounds x="640" y="187" width="63" height="19"/>
</element>
<element name="label135" ref="label_135">
- <bounds x="610" y="194" width="32" height="55">
- </bounds>
+ <bounds x="610" y="194" width="32" height="55"/>
</element>
<element name="label136" ref="label_136">
- <bounds x="496" y="150" width="34" height="32">
- </bounds>
+ <bounds x="496" y="150" width="34" height="32"/>
</element>
<element name="label168" ref="label_168">
- <bounds x="71" y="94" width="83" height="19">
- </bounds>
+ <bounds x="71" y="94" width="83" height="19"/>
</element>
<element name="label179" ref="label_179">
- <bounds x="211" y="205" width="92" height="19">
- </bounds>
+ <bounds x="211" y="205" width="92" height="19"/>
</element>
<element name="label180" ref="label_180">
- <bounds x="382" y="202" width="51" height="38">
- </bounds>
+ <bounds x="382" y="202" width="51" height="38"/>
</element>
<element name="label189" ref="label_189">
- <bounds x="364" y="320" width="54" height="19">
- </bounds>
+ <bounds x="364" y="320" width="54" height="19"/>
</element>
<element name="label192" ref="label_192">
- <bounds x="166" y="474" width="49" height="22">
- </bounds>
+ <bounds x="166" y="474" width="49" height="22"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4andycp.lay b/src/mame/layout/m4andycp.lay
index 53cf3c81582..d1e5f07fa05 100644
--- a/src/mame/layout/m4andycp.lay
+++ b/src/mame/layout/m4andycp.lay
@@ -8,3439 +8,2622 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_19_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.24" blue="0.16">
- </color>
+ <color red="0.50" green="0.24" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.04">
- </color>
+ <color red="0.12" green="0.06" blue="0.04"/>
</rect>
</element>
<element name="lamp_19_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.48" blue="0.33">
- </color>
+ <color red="1.00" green="0.48" blue="0.33"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.12" blue="0.08">
- </color>
+ <color red="0.25" green="0.12" blue="0.08"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_27_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.21" blue="0.13">
- </color>
+ <color red="0.50" green="0.21" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.03">
- </color>
+ <color red="0.12" green="0.05" blue="0.03"/>
</rect>
</element>
<element name="lamp_27_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.42" blue="0.25">
- </color>
+ <color red="1.00" green="0.42" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.10" blue="0.06">
- </color>
+ <color red="0.25" green="0.10" blue="0.06"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_35_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.18" blue="0.08">
- </color>
+ <color red="0.50" green="0.18" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.04" blue="0.02">
- </color>
+ <color red="0.12" green="0.04" blue="0.02"/>
</rect>
</element>
<element name="lamp_35_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.35" blue="0.17">
- </color>
+ <color red="1.00" green="0.35" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.09" blue="0.04">
- </color>
+ <color red="0.25" green="0.09" blue="0.04"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_43_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.15" blue="0.04">
- </color>
+ <color red="0.50" green="0.15" blue="0.04"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.04" blue="0.01">
- </color>
+ <color red="0.12" green="0.04" blue="0.01"/>
</rect>
</element>
<element name="lamp_43_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.29" blue="0.08">
- </color>
+ <color red="1.00" green="0.29" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.07" blue="0.02">
- </color>
+ <color red="0.25" green="0.07" blue="0.02"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.11" blue="0.00">
- </color>
+ <color red="0.50" green="0.11" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.03" blue="0.00">
- </color>
+ <color red="0.12" green="0.03" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.22" blue="0.00">
- </color>
+ <color red="1.00" green="0.22" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.05" blue="0.00">
- </color>
+ <color red="0.25" green="0.05" blue="0.00"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.13">
- </color>
+ <color red="0.00" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.03">
- </color>
+ <color red="0.00" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.25">
- </color>
+ <color red="0.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.06">
- </color>
+ <color red="0.00" green="0.13" blue="0.06"/>
</rect>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NOW">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_47_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.13">
- </color>
+ <color red="0.00" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.03">
- </color>
+ <color red="0.00" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_47_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.25">
- </color>
+ <color red="0.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.06">
- </color>
+ <color red="0.00" green="0.13" blue="0.06"/>
</rect>
<text string="Last Orders">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_6_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.13">
- </color>
+ <color red="0.00" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.03">
- </color>
+ <color red="0.00" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_6_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.25">
- </color>
+ <color red="0.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.06">
- </color>
+ <color red="0.00" green="0.13" blue="0.06"/>
</rect>
<text string="Advance">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_7_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_7_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="Flowers For Flo">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_15_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.13">
- </color>
+ <color red="0.00" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.03">
- </color>
+ <color red="0.00" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_15_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.25">
- </color>
+ <color red="0.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.06">
- </color>
+ <color red="0.00" green="0.13" blue="0.06"/>
</rect>
<text string="The Games Up">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_23_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_23_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="Take A Nap">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_31_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.13">
- </color>
+ <color red="0.00" green="0.25" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.03">
- </color>
+ <color red="0.00" green="0.06" blue="0.03"/>
</rect>
</element>
<element name="lamp_31_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.25">
- </color>
+ <color red="0.00" green="0.50" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.06">
- </color>
+ <color red="0.00" green="0.13" blue="0.06"/>
</rect>
<text string="Evens Favourite">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_39_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_39_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="Out And About">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_5_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.11" blue="0.00">
- </color>
+ <color red="0.50" green="0.11" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.03" blue="0.00">
- </color>
+ <color red="0.12" green="0.03" blue="0.00"/>
</rect>
</element>
<element name="lamp_5_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.22" blue="0.00">
- </color>
+ <color red="1.00" green="0.22" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.05" blue="0.00">
- </color>
+ <color red="0.25" green="0.05" blue="0.00"/>
</rect>
<text string="&#xA3;6.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_13_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.15" blue="0.04">
- </color>
+ <color red="0.50" green="0.15" blue="0.04"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.04" blue="0.01">
- </color>
+ <color red="0.12" green="0.04" blue="0.01"/>
</rect>
</element>
<element name="lamp_13_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.29" blue="0.08">
- </color>
+ <color red="1.00" green="0.29" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.07" blue="0.02">
- </color>
+ <color red="0.25" green="0.07" blue="0.02"/>
</rect>
<text string="&#xA3;3.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_46_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_46_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="FEATURE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_38_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_38_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="FEATURE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_30_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_30_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="FEATURE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_22_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_22_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="FEATURE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_14_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_14_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="FEATURE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_45_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.27" blue="0.21">
- </color>
+ <color red="0.50" green="0.27" blue="0.21"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.07" blue="0.05">
- </color>
+ <color red="0.12" green="0.07" blue="0.05"/>
</rect>
</element>
<element name="lamp_45_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.55" blue="0.42">
- </color>
+ <color red="1.00" green="0.55" blue="0.42"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.14" blue="0.10">
- </color>
+ <color red="0.25" green="0.14" blue="0.10"/>
</rect>
<text string="&#xA3;1.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_37_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.24" blue="0.16">
- </color>
+ <color red="0.50" green="0.24" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.04">
- </color>
+ <color red="0.12" green="0.06" blue="0.04"/>
</rect>
</element>
<element name="lamp_37_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.48" blue="0.33">
- </color>
+ <color red="1.00" green="0.48" blue="0.33"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.12" blue="0.08">
- </color>
+ <color red="0.25" green="0.12" blue="0.08"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_29_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.21" blue="0.13">
- </color>
+ <color red="0.50" green="0.21" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.03">
- </color>
+ <color red="0.12" green="0.05" blue="0.03"/>
</rect>
</element>
<element name="lamp_29_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.42" blue="0.25">
- </color>
+ <color red="1.00" green="0.42" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.10" blue="0.06">
- </color>
+ <color red="0.25" green="0.10" blue="0.06"/>
</rect>
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_21_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.18" blue="0.08">
- </color>
+ <color red="0.50" green="0.18" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.04" blue="0.02">
- </color>
+ <color red="0.12" green="0.04" blue="0.02"/>
</rect>
</element>
<element name="lamp_21_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.35" blue="0.17">
- </color>
+ <color red="1.00" green="0.35" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.09" blue="0.04">
- </color>
+ <color red="0.25" green="0.09" blue="0.04"/>
</rect>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_103_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_88_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="Back To Sleep">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_89_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_89_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Seeing">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Double">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_81_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_95_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_95_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="One For The Road">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_94_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Bar Tender">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_93_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_93_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Pound A Round">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_92_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_91_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_91_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="Back To Sleep">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_90_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_90_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_77_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_77_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="TRAIL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="HELD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_102_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_102_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Cup Run">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Skill Shot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Man Of The Match">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Break">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_109_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_110_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_110_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_111_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_111_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="Back To Sleep">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_119_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_119_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="Back To Sleep">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_117_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_117_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_115_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_115_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Photo Finish">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Token Tote">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_107_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_107_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Pocket">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Money">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_106_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_106_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Max 147">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_105_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_105_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Rack Em Up">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_104_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.80">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Hat">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Trick">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_97_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_127_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_127_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="First Past The Post">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_126_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_126_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_125_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_125_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="80p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.50">
- </color>
+ <color red="0.50" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.12">
- </color>
+ <color red="0.12" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_123_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="1.00">
- </color>
+ <color red="1.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.25">
- </color>
+ <color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_121_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_121_1" defstate="0">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.43" blue="0.00">
- </color>
+ <color red="0.49" green="0.43" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="0.99" green="0.87" blue="0.01">
- </color>
+ <color red="0.99" green="0.87" blue="0.01"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.22" blue="0.00">
- </color>
+ <color red="0.25" green="0.22" blue="0.00"/>
</rect>
<text string="Each Way Bet">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.38">
- </color>
+ <color red="0.00" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.09">
- </color>
+ <color red="0.00" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.75">
- </color>
+ <color red="0.00" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.19">
- </color>
+ <color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="L">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="O">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.28" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="S">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="E">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.72" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
</element>
<element name="colour_button_148_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_148">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_149_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_149">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_150_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_150">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_151_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_151">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_152_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_152">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_154_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_154">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_155_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.50">
- </color>
+ <color red="0.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.12">
- </color>
+ <color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_155">
<rect state="1">
- <color red="0.00" green="1.00" blue="1.00">
- </color>
+ <color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.25">
- </color>
+ <color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_156_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_156">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_157_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_157">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="TripleBar(*),SingleBar,DoubleBar,Red7(*),TripleBar,DoubleBar,Blue7,DoubleBar,SingleBar(*),Red7,SingleBar,TripleBar,Blue7,DoubleBar(*),SingleBar,Blue7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,SingleBar,DoubleBar(*),Blue7,TripleBar,DoubleBar,Red7,DoubleBar,SingleBar(*),Blue7,SingleBar,TripleBar,Red7,DoubleBar(*),SingleBar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,DoubleBar,Blue7(*),DoubleBar,SingleBar,Red7(*),SingleBar,TripleBar(*),Blue7,DoubleBar,SingleBar,Blue7,TripleBar(*),SingleBar,DoubleBar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="11,12,1,2,3,4,5,6,7,8,9,10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="vfd0">
<led16segsc>
- <color red="0.0" green="1.0" blue="1.0">
- </color>
+ <color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_28">
<text string="SAVINGS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_29">
<text string="PLAYS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_137">
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_138">
<text string="POT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_141">
<text string="CAPP">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_142">
<text string="ANDY">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_146">
<text string="V1.0">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_147">
<text string="Mystic Rhythms">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="686" height="661">
- </bounds>
+ <bounds x="0" y="0" width="686" height="661"/>
</element>
<element ref="reel_background">
- <bounds x="103" y="426" width="80" height="140">
- </bounds>
+ <bounds x="103" y="426" width="80" height="140"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="103.0000" y="426.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="103.0000" y="426.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="106.3333" y="427.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="106.3333" y="427.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="109.6667" y="429.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="109.6667" y="429.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="113.0000" y="431.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="113.0000" y="431.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="116.3333" y="433.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="116.3333" y="433.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="119.6667" y="435.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="119.6667" y="435.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="103.0000" y="472.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="103.0000" y="472.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="106.3333" y="474.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="106.3333" y="474.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="109.6667" y="476.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="109.6667" y="476.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="113.0000" y="478.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="113.0000" y="478.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="116.3333" y="480.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="116.3333" y="480.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="119.6667" y="482.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="119.6667" y="482.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="103.0000" y="519.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="103.0000" y="519.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="106.3333" y="521.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="106.3333" y="521.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="109.6667" y="523.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="109.6667" y="523.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="113.0000" y="525.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="113.0000" y="525.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="116.3333" y="527.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="116.3333" y="527.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="119.6667" y="529.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="119.6667" y="529.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="103" y="426" width="80" height="140">
- </bounds>
+ <bounds x="103" y="426" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="208" y="426" width="80" height="140">
- </bounds>
+ <bounds x="208" y="426" width="80" height="140"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="208.0000" y="426.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="208.0000" y="426.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="211.3333" y="427.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="211.3333" y="427.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="214.6667" y="429.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="214.6667" y="429.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="218.0000" y="431.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="218.0000" y="431.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="221.3333" y="433.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="221.3333" y="433.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="224.6667" y="435.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="224.6667" y="435.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="208.0000" y="472.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="208.0000" y="472.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="211.3333" y="474.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="211.3333" y="474.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="214.6667" y="476.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="214.6667" y="476.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="218.0000" y="478.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="218.0000" y="478.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="221.3333" y="480.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="221.3333" y="480.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="224.6667" y="482.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="224.6667" y="482.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="208.0000" y="519.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="208.0000" y="519.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="211.3333" y="521.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="211.3333" y="521.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="214.6667" y="523.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="214.6667" y="523.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="218.0000" y="525.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="218.0000" y="525.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="221.3333" y="527.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="221.3333" y="527.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="224.6667" y="529.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="224.6667" y="529.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="208" y="426" width="80" height="140">
- </bounds>
+ <bounds x="208" y="426" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="313" y="426" width="80" height="140">
- </bounds>
+ <bounds x="313" y="426" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="313.0000" y="426.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="313.0000" y="426.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="316.3333" y="427.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="316.3333" y="427.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="319.6667" y="429.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="319.6667" y="429.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="323.0000" y="431.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="323.0000" y="431.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="326.3333" y="433.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="326.3333" y="433.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="329.6667" y="435.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="329.6667" y="435.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="313.0000" y="472.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="313.0000" y="472.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="316.3333" y="474.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="316.3333" y="474.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="319.6667" y="476.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="319.6667" y="476.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="323.0000" y="478.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="323.0000" y="478.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="326.3333" y="480.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="326.3333" y="480.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="329.6667" y="482.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="329.6667" y="482.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="313.0000" y="519.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="313.0000" y="519.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="316.3333" y="521.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="316.3333" y="521.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="319.6667" y="523.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="319.6667" y="523.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="323.0000" y="525.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="323.0000" y="525.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="326.3333" y="527.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="326.3333" y="527.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="329.6667" y="529.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="329.6667" y="529.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="313" y="426" width="80" height="140">
- </bounds>
+ <bounds x="313" y="426" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="229" y="160" width="60" height="50">
- </bounds>
+ <bounds x="229" y="160" width="60" height="50"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_0" state="0">
- <bounds x="229.0000" y="160.0000" width="60.0000" height="50.0000">
- </bounds>
+ <bounds x="229.0000" y="160.0000" width="60.0000" height="50.0000"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="231.5000" y="162.0833" width="55.0000" height="45.8333">
- </bounds>
+ <bounds x="231.5000" y="162.0833" width="55.0000" height="45.8333"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="234.0000" y="164.1667" width="50.0000" height="41.6667">
- </bounds>
+ <bounds x="234.0000" y="164.1667" width="50.0000" height="41.6667"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="236.5000" y="166.2500" width="45.0000" height="37.5000">
- </bounds>
+ <bounds x="236.5000" y="166.2500" width="45.0000" height="37.5000"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="239.0000" y="168.3333" width="40.0000" height="33.3333">
- </bounds>
+ <bounds x="239.0000" y="168.3333" width="40.0000" height="33.3333"/>
</element>
<element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="241.5000" y="170.4167" width="35.0000" height="29.1667">
- </bounds>
+ <bounds x="241.5000" y="170.4167" width="35.0000" height="29.1667"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="229" y="160" width="60" height="50">
- </bounds>
+ <bounds x="229" y="160" width="60" height="50"/>
</element>
<element name="lamp19" ref="lamp_19_1_border" state="0">
- <bounds x="296" y="572" width="42" height="42">
- </bounds>
+ <bounds x="296" y="572" width="42" height="42"/>
</element>
<element name="lamp19" ref="lamp_19_1" state="0">
- <bounds x="298" y="574" width="38" height="38">
- </bounds>
+ <bounds x="298" y="574" width="38" height="38"/>
</element>
<element name="lamp27" ref="lamp_27_1_border" state="0">
- <bounds x="252" y="572" width="42" height="42">
- </bounds>
+ <bounds x="252" y="572" width="42" height="42"/>
</element>
<element name="lamp27" ref="lamp_27_1" state="0">
- <bounds x="254" y="574" width="38" height="38">
- </bounds>
+ <bounds x="254" y="574" width="38" height="38"/>
</element>
<element name="lamp35" ref="lamp_35_1_border" state="0">
- <bounds x="208" y="572" width="42" height="42">
- </bounds>
+ <bounds x="208" y="572" width="42" height="42"/>
</element>
<element name="lamp35" ref="lamp_35_1" state="0">
- <bounds x="210" y="574" width="38" height="38">
- </bounds>
+ <bounds x="210" y="574" width="38" height="38"/>
</element>
<element name="lamp43" ref="lamp_43_1_border" state="0">
- <bounds x="164" y="572" width="42" height="42">
- </bounds>
+ <bounds x="164" y="572" width="42" height="42"/>
</element>
<element name="lamp43" ref="lamp_43_1" state="0">
- <bounds x="166" y="574" width="38" height="38">
- </bounds>
+ <bounds x="166" y="574" width="38" height="38"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="120" y="572" width="42" height="42">
- </bounds>
+ <bounds x="120" y="572" width="42" height="42"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="122" y="574" width="38" height="38">
- </bounds>
+ <bounds x="122" y="574" width="38" height="38"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="346" y="577" width="52" height="32">
- </bounds>
+ <bounds x="346" y="577" width="52" height="32"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="348" y="579" width="48" height="28">
- </bounds>
+ <bounds x="348" y="579" width="48" height="28"/>
</element>
<element name="lamp47" ref="lamp_47_1_border" state="0">
- <bounds x="3" y="546" width="92" height="22">
- </bounds>
+ <bounds x="3" y="546" width="92" height="22"/>
</element>
<element name="lamp47" ref="lamp_47_1" state="0">
- <bounds x="5" y="548" width="88" height="18">
- </bounds>
+ <bounds x="5" y="548" width="88" height="18"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
- <bounds x="3" y="426" width="92" height="22">
- </bounds>
+ <bounds x="3" y="426" width="92" height="22"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
- <bounds x="5" y="428" width="88" height="18">
- </bounds>
+ <bounds x="5" y="428" width="88" height="18"/>
</element>
<element name="lamp7" ref="lamp_7_1_border" state="0">
- <bounds x="3" y="446" width="92" height="22">
- </bounds>
+ <bounds x="3" y="446" width="92" height="22"/>
</element>
<element name="lamp7" ref="lamp_7_1" state="0">
- <bounds x="5" y="448" width="88" height="18">
- </bounds>
+ <bounds x="5" y="448" width="88" height="18"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
- <bounds x="3" y="466" width="92" height="22">
- </bounds>
+ <bounds x="3" y="466" width="92" height="22"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
- <bounds x="5" y="468" width="88" height="18">
- </bounds>
+ <bounds x="5" y="468" width="88" height="18"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
- <bounds x="3" y="486" width="92" height="22">
- </bounds>
+ <bounds x="3" y="486" width="92" height="22"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
- <bounds x="5" y="488" width="88" height="18">
- </bounds>
+ <bounds x="5" y="488" width="88" height="18"/>
</element>
<element name="lamp31" ref="lamp_31_1_border" state="0">
- <bounds x="3" y="506" width="92" height="22">
- </bounds>
+ <bounds x="3" y="506" width="92" height="22"/>
</element>
<element name="lamp31" ref="lamp_31_1" state="0">
- <bounds x="5" y="508" width="88" height="18">
- </bounds>
+ <bounds x="5" y="508" width="88" height="18"/>
</element>
<element name="lamp39" ref="lamp_39_1_border" state="0">
- <bounds x="3" y="526" width="92" height="22">
- </bounds>
+ <bounds x="3" y="526" width="92" height="22"/>
</element>
<element name="lamp39" ref="lamp_39_1" state="0">
- <bounds x="5" y="528" width="88" height="18">
- </bounds>
+ <bounds x="5" y="528" width="88" height="18"/>
</element>
<element name="lamp5" ref="lamp_5_1_border" state="0">
- <bounds x="548" y="425" width="129" height="33">
- </bounds>
+ <bounds x="548" y="425" width="129" height="33"/>
</element>
<element name="lamp5" ref="lamp_5_1" state="0">
- <bounds x="550" y="427" width="125" height="29">
- </bounds>
+ <bounds x="550" y="427" width="125" height="29"/>
</element>
<element name="lamp13" ref="lamp_13_1_border" state="0">
- <bounds x="548" y="456" width="62" height="33">
- </bounds>
+ <bounds x="548" y="456" width="62" height="33"/>
</element>
<element name="lamp13" ref="lamp_13_1" state="0">
- <bounds x="550" y="458" width="58" height="29">
- </bounds>
+ <bounds x="550" y="458" width="58" height="29"/>
</element>
<element name="lamp46" ref="lamp_46_1_border" state="0">
- <bounds x="609" y="580" width="68" height="33">
- </bounds>
+ <bounds x="609" y="580" width="68" height="33"/>
</element>
<element name="lamp46" ref="lamp_46_1" state="0">
- <bounds x="611" y="582" width="64" height="29">
- </bounds>
+ <bounds x="611" y="582" width="64" height="29"/>
</element>
<element name="lamp38" ref="lamp_38_1_border" state="0">
- <bounds x="609" y="549" width="68" height="33">
- </bounds>
+ <bounds x="609" y="549" width="68" height="33"/>
</element>
<element name="lamp38" ref="lamp_38_1" state="0">
- <bounds x="611" y="551" width="64" height="29">
- </bounds>
+ <bounds x="611" y="551" width="64" height="29"/>
</element>
<element name="lamp30" ref="lamp_30_1_border" state="0">
- <bounds x="609" y="518" width="68" height="33">
- </bounds>
+ <bounds x="609" y="518" width="68" height="33"/>
</element>
<element name="lamp30" ref="lamp_30_1" state="0">
- <bounds x="611" y="520" width="64" height="29">
- </bounds>
+ <bounds x="611" y="520" width="64" height="29"/>
</element>
<element name="lamp22" ref="lamp_22_1_border" state="0">
- <bounds x="609" y="487" width="68" height="33">
- </bounds>
+ <bounds x="609" y="487" width="68" height="33"/>
</element>
<element name="lamp22" ref="lamp_22_1" state="0">
- <bounds x="611" y="489" width="64" height="29">
- </bounds>
+ <bounds x="611" y="489" width="64" height="29"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
- <bounds x="609" y="456" width="68" height="33">
- </bounds>
+ <bounds x="609" y="456" width="68" height="33"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
- <bounds x="611" y="458" width="64" height="29">
- </bounds>
+ <bounds x="611" y="458" width="64" height="29"/>
</element>
<element name="lamp45" ref="lamp_45_1_border" state="0">
- <bounds x="548" y="580" width="62" height="33">
- </bounds>
+ <bounds x="548" y="580" width="62" height="33"/>
</element>
<element name="lamp45" ref="lamp_45_1" state="0">
- <bounds x="550" y="582" width="58" height="29">
- </bounds>
+ <bounds x="550" y="582" width="58" height="29"/>
</element>
<element name="lamp37" ref="lamp_37_1_border" state="0">
- <bounds x="548" y="549" width="62" height="33">
- </bounds>
+ <bounds x="548" y="549" width="62" height="33"/>
</element>
<element name="lamp37" ref="lamp_37_1" state="0">
- <bounds x="550" y="551" width="58" height="29">
- </bounds>
+ <bounds x="550" y="551" width="58" height="29"/>
</element>
<element name="lamp29" ref="lamp_29_1_border" state="0">
- <bounds x="548" y="518" width="62" height="33">
- </bounds>
+ <bounds x="548" y="518" width="62" height="33"/>
</element>
<element name="lamp29" ref="lamp_29_1" state="0">
- <bounds x="550" y="520" width="58" height="29">
- </bounds>
+ <bounds x="550" y="520" width="58" height="29"/>
</element>
<element name="lamp21" ref="lamp_21_1_border" state="0">
- <bounds x="548" y="487" width="62" height="33">
- </bounds>
+ <bounds x="548" y="487" width="62" height="33"/>
</element>
<element name="lamp21" ref="lamp_21_1" state="0">
- <bounds x="550" y="489" width="58" height="29">
- </bounds>
+ <bounds x="550" y="489" width="58" height="29"/>
</element>
<element name="lamp103" ref="lamp_103_1_border" state="0">
- <bounds x="456" y="107" width="58" height="32">
- </bounds>
+ <bounds x="456" y="107" width="58" height="32"/>
</element>
<element name="lamp103" ref="lamp_103_1" state="0">
- <bounds x="458" y="109" width="54" height="28">
- </bounds>
+ <bounds x="458" y="109" width="54" height="28"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="512" y="108" width="58" height="32">
- </bounds>
+ <bounds x="512" y="108" width="58" height="32"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="514" y="110" width="54" height="28">
- </bounds>
+ <bounds x="514" y="110" width="54" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="427" y="226" width="58" height="32">
- </bounds>
+ <bounds x="427" y="226" width="58" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="429" y="228" width="54" height="28">
- </bounds>
+ <bounds x="429" y="228" width="54" height="28"/>
</element>
<element name="lamp89" ref="lamp_89_1_border" state="0">
- <bounds x="568" y="130" width="58" height="32">
- </bounds>
+ <bounds x="568" y="130" width="58" height="32"/>
</element>
<element name="lamp89" ref="lamp_89_1" state="0">
- <bounds x="570" y="132" width="54" height="28">
- </bounds>
+ <bounds x="570" y="132" width="54" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="440" y="196" width="58" height="32">
- </bounds>
+ <bounds x="440" y="196" width="58" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="442" y="198" width="54" height="28">
- </bounds>
+ <bounds x="442" y="198" width="54" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="421" y="256" width="58" height="32">
- </bounds>
+ <bounds x="421" y="256" width="58" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="423" y="258" width="54" height="28">
- </bounds>
+ <bounds x="423" y="258" width="54" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="493" y="316" width="58" height="32">
- </bounds>
+ <bounds x="493" y="316" width="58" height="32"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="495" y="318" width="54" height="28">
- </bounds>
+ <bounds x="495" y="318" width="54" height="28"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="549" y="316" width="58" height="32">
- </bounds>
+ <bounds x="549" y="316" width="58" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="551" y="318" width="54" height="28">
- </bounds>
+ <bounds x="551" y="318" width="54" height="28"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="449" y="286" width="58" height="32">
- </bounds>
+ <bounds x="449" y="286" width="58" height="32"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="451" y="288" width="54" height="28">
- </bounds>
+ <bounds x="451" y="288" width="54" height="28"/>
</element>
<element name="lamp95" ref="lamp_95_1_border" state="0">
- <bounds x="605" y="310" width="58" height="32">
- </bounds>
+ <bounds x="605" y="310" width="58" height="32"/>
</element>
<element name="lamp95" ref="lamp_95_1" state="0">
- <bounds x="607" y="312" width="54" height="28">
- </bounds>
+ <bounds x="607" y="312" width="54" height="28"/>
</element>
<element name="lamp94" ref="lamp_94_1_border" state="0">
- <bounds x="615" y="280" width="58" height="32">
- </bounds>
+ <bounds x="615" y="280" width="58" height="32"/>
</element>
<element name="lamp94" ref="lamp_94_1" state="0">
- <bounds x="617" y="282" width="54" height="28">
- </bounds>
+ <bounds x="617" y="282" width="54" height="28"/>
</element>
<element name="lamp93" ref="lamp_93_1_border" state="0">
- <bounds x="622" y="250" width="58" height="32">
- </bounds>
+ <bounds x="622" y="250" width="58" height="32"/>
</element>
<element name="lamp93" ref="lamp_93_1" state="0">
- <bounds x="624" y="252" width="54" height="28">
- </bounds>
+ <bounds x="624" y="252" width="54" height="28"/>
</element>
<element name="lamp92" ref="lamp_92_1_border" state="0">
- <bounds x="623" y="220" width="58" height="32">
- </bounds>
+ <bounds x="623" y="220" width="58" height="32"/>
</element>
<element name="lamp92" ref="lamp_92_1" state="0">
- <bounds x="625" y="222" width="54" height="28">
- </bounds>
+ <bounds x="625" y="222" width="54" height="28"/>
</element>
<element name="lamp91" ref="lamp_91_1_border" state="0">
- <bounds x="615" y="190" width="58" height="32">
- </bounds>
+ <bounds x="615" y="190" width="58" height="32"/>
</element>
<element name="lamp91" ref="lamp_91_1" state="0">
- <bounds x="617" y="192" width="54" height="28">
- </bounds>
+ <bounds x="617" y="192" width="54" height="28"/>
</element>
<element name="lamp90" ref="lamp_90_1_border" state="0">
- <bounds x="607" y="160" width="58" height="32">
- </bounds>
+ <bounds x="607" y="160" width="58" height="32"/>
</element>
<element name="lamp90" ref="lamp_90_1" state="0">
- <bounds x="609" y="162" width="54" height="28">
- </bounds>
+ <bounds x="609" y="162" width="54" height="28"/>
</element>
<element name="lamp77" ref="lamp_77_1_border" state="0">
- <bounds x="432" y="318" width="42" height="32">
- </bounds>
+ <bounds x="432" y="318" width="42" height="32"/>
</element>
<element name="lamp77" ref="lamp_77_1" state="0">
- <bounds x="434" y="320" width="38" height="28">
- </bounds>
+ <bounds x="434" y="320" width="38" height="28"/>
</element>
<element name="lamp102" ref="lamp_102_1_border" state="0">
- <bounds x="455" y="77" width="58" height="32">
- </bounds>
+ <bounds x="455" y="77" width="58" height="32"/>
</element>
<element name="lamp102" ref="lamp_102_1" state="0">
- <bounds x="457" y="79" width="54" height="28">
- </bounds>
+ <bounds x="457" y="79" width="54" height="28"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="455" y="47" width="58" height="32">
- </bounds>
+ <bounds x="455" y="47" width="58" height="32"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="457" y="49" width="54" height="28">
- </bounds>
+ <bounds x="457" y="49" width="54" height="28"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="283" y="17" width="58" height="32">
- </bounds>
+ <bounds x="283" y="17" width="58" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="285" y="19" width="54" height="28">
- </bounds>
+ <bounds x="285" y="19" width="54" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="451" y="17" width="62" height="32">
- </bounds>
+ <bounds x="451" y="17" width="62" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="453" y="19" width="58" height="28">
- </bounds>
+ <bounds x="453" y="19" width="58" height="28"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="59" y="17" width="58" height="32">
- </bounds>
+ <bounds x="59" y="17" width="58" height="32"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="61" y="19" width="54" height="28">
- </bounds>
+ <bounds x="61" y="19" width="54" height="28"/>
</element>
<element name="lamp109" ref="lamp_109_1_border" state="0">
- <bounds x="115" y="17" width="58" height="32">
- </bounds>
+ <bounds x="115" y="17" width="58" height="32"/>
</element>
<element name="lamp109" ref="lamp_109_1" state="0">
- <bounds x="117" y="19" width="54" height="28">
- </bounds>
+ <bounds x="117" y="19" width="54" height="28"/>
</element>
<element name="lamp110" ref="lamp_110_1_border" state="0">
- <bounds x="171" y="17" width="58" height="32">
- </bounds>
+ <bounds x="171" y="17" width="58" height="32"/>
</element>
<element name="lamp110" ref="lamp_110_1" state="0">
- <bounds x="173" y="19" width="54" height="28">
- </bounds>
+ <bounds x="173" y="19" width="54" height="28"/>
</element>
<element name="lamp111" ref="lamp_111_1_border" state="0">
- <bounds x="227" y="17" width="58" height="32">
- </bounds>
+ <bounds x="227" y="17" width="58" height="32"/>
</element>
<element name="lamp111" ref="lamp_111_1" state="0">
- <bounds x="229" y="19" width="54" height="28">
- </bounds>
+ <bounds x="229" y="19" width="54" height="28"/>
</element>
<element name="lamp119" ref="lamp_119_1_border" state="0">
- <bounds x="3" y="137" width="58" height="32">
- </bounds>
+ <bounds x="3" y="137" width="58" height="32"/>
</element>
<element name="lamp119" ref="lamp_119_1" state="0">
- <bounds x="5" y="139" width="54" height="28">
- </bounds>
+ <bounds x="5" y="139" width="54" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="3" y="167" width="58" height="32">
- </bounds>
+ <bounds x="3" y="167" width="58" height="32"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="5" y="169" width="54" height="28">
- </bounds>
+ <bounds x="5" y="169" width="54" height="28"/>
</element>
<element name="lamp117" ref="lamp_117_1_border" state="0">
- <bounds x="3" y="197" width="58" height="32">
- </bounds>
+ <bounds x="3" y="197" width="58" height="32"/>
</element>
<element name="lamp117" ref="lamp_117_1" state="0">
- <bounds x="5" y="199" width="54" height="28">
- </bounds>
+ <bounds x="5" y="199" width="54" height="28"/>
</element>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="3" y="227" width="58" height="32">
- </bounds>
+ <bounds x="3" y="227" width="58" height="32"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="5" y="229" width="54" height="28">
- </bounds>
+ <bounds x="5" y="229" width="54" height="28"/>
</element>
<element name="lamp115" ref="lamp_115_1_border" state="0">
- <bounds x="3" y="257" width="58" height="32">
- </bounds>
+ <bounds x="3" y="257" width="58" height="32"/>
</element>
<element name="lamp115" ref="lamp_115_1" state="0">
- <bounds x="5" y="259" width="54" height="28">
- </bounds>
+ <bounds x="5" y="259" width="54" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="3" y="287" width="58" height="32">
- </bounds>
+ <bounds x="3" y="287" width="58" height="32"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="5" y="289" width="54" height="28">
- </bounds>
+ <bounds x="5" y="289" width="54" height="28"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="3" y="317" width="58" height="32">
- </bounds>
+ <bounds x="3" y="317" width="58" height="32"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="5" y="319" width="54" height="28">
- </bounds>
+ <bounds x="5" y="319" width="54" height="28"/>
</element>
<element name="lamp107" ref="lamp_107_1_border" state="0">
- <bounds x="3" y="17" width="58" height="32">
- </bounds>
+ <bounds x="3" y="17" width="58" height="32"/>
</element>
<element name="lamp107" ref="lamp_107_1" state="0">
- <bounds x="5" y="19" width="54" height="28">
- </bounds>
+ <bounds x="5" y="19" width="54" height="28"/>
</element>
<element name="lamp106" ref="lamp_106_1_border" state="0">
- <bounds x="3" y="47" width="58" height="32">
- </bounds>
+ <bounds x="3" y="47" width="58" height="32"/>
</element>
<element name="lamp106" ref="lamp_106_1" state="0">
- <bounds x="5" y="49" width="54" height="28">
- </bounds>
+ <bounds x="5" y="49" width="54" height="28"/>
</element>
<element name="lamp105" ref="lamp_105_1_border" state="0">
- <bounds x="3" y="77" width="58" height="32">
- </bounds>
+ <bounds x="3" y="77" width="58" height="32"/>
</element>
<element name="lamp105" ref="lamp_105_1" state="0">
- <bounds x="5" y="79" width="54" height="28">
- </bounds>
+ <bounds x="5" y="79" width="54" height="28"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="3" y="107" width="58" height="32">
- </bounds>
+ <bounds x="3" y="107" width="58" height="32"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="5" y="109" width="54" height="28">
- </bounds>
+ <bounds x="5" y="109" width="54" height="28"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="395" y="17" width="58" height="32">
- </bounds>
+ <bounds x="395" y="17" width="58" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="397" y="19" width="54" height="28">
- </bounds>
+ <bounds x="397" y="19" width="54" height="28"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="339" y="17" width="58" height="32">
- </bounds>
+ <bounds x="339" y="17" width="58" height="32"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="341" y="19" width="54" height="28">
- </bounds>
+ <bounds x="341" y="19" width="54" height="28"/>
</element>
<element name="lamp127" ref="lamp_127_1_border" state="0">
- <bounds x="115" y="317" width="58" height="32">
- </bounds>
+ <bounds x="115" y="317" width="58" height="32"/>
</element>
<element name="lamp127" ref="lamp_127_1" state="0">
- <bounds x="117" y="319" width="54" height="28">
- </bounds>
+ <bounds x="117" y="319" width="54" height="28"/>
</element>
<element name="lamp126" ref="lamp_126_1_border" state="0">
- <bounds x="171" y="317" width="42" height="32">
- </bounds>
+ <bounds x="171" y="317" width="42" height="32"/>
</element>
<element name="lamp126" ref="lamp_126_1" state="0">
- <bounds x="173" y="319" width="38" height="28">
- </bounds>
+ <bounds x="173" y="319" width="38" height="28"/>
</element>
<element name="lamp125" ref="lamp_125_1_border" state="0">
- <bounds x="211" y="317" width="42" height="32">
- </bounds>
+ <bounds x="211" y="317" width="42" height="32"/>
</element>
<element name="lamp125" ref="lamp_125_1" state="0">
- <bounds x="213" y="319" width="38" height="28">
- </bounds>
+ <bounds x="213" y="319" width="38" height="28"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="251" y="317" width="42" height="32">
- </bounds>
+ <bounds x="251" y="317" width="42" height="32"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="253" y="319" width="38" height="28">
- </bounds>
+ <bounds x="253" y="319" width="38" height="28"/>
</element>
<element name="lamp123" ref="lamp_123_1_border" state="0">
- <bounds x="291" y="317" width="42" height="32">
- </bounds>
+ <bounds x="291" y="317" width="42" height="32"/>
</element>
<element name="lamp123" ref="lamp_123_1" state="0">
- <bounds x="293" y="319" width="38" height="28">
- </bounds>
+ <bounds x="293" y="319" width="38" height="28"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="331" y="317" width="42" height="32">
- </bounds>
+ <bounds x="331" y="317" width="42" height="32"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="333" y="319" width="38" height="28">
- </bounds>
+ <bounds x="333" y="319" width="38" height="28"/>
</element>
<element name="lamp121" ref="lamp_121_1_border" state="0">
- <bounds x="371" y="317" width="42" height="32">
- </bounds>
+ <bounds x="371" y="317" width="42" height="32"/>
</element>
<element name="lamp121" ref="lamp_121_1" state="0">
- <bounds x="373" y="319" width="38" height="28">
- </bounds>
+ <bounds x="373" y="319" width="38" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="59" y="317" width="58" height="32">
- </bounds>
+ <bounds x="59" y="317" width="58" height="32"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="61" y="319" width="54" height="28">
- </bounds>
+ <bounds x="61" y="319" width="54" height="28"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="414" y="545" width="15" height="68">
- </bounds>
+ <bounds x="414" y="545" width="15" height="68"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="416" y="547" width="11" height="64">
- </bounds>
+ <bounds x="416" y="547" width="11" height="64"/>
</element>
<element name="lamp32" ref="colour_button_148_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="322" y="619" width="62" height="42">
- </bounds>
+ <bounds x="322" y="619" width="62" height="42"/>
</element>
<element name="lamp32" ref="colour_button_148" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="324" y="621" width="58" height="38">
- </bounds>
+ <bounds x="324" y="621" width="58" height="38"/>
</element>
<element name="lamp26" ref="colour_button_149_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="217" y="619" width="62" height="42">
- </bounds>
+ <bounds x="217" y="619" width="62" height="42"/>
</element>
<element name="lamp26" ref="colour_button_149" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="219" y="621" width="58" height="38">
- </bounds>
+ <bounds x="219" y="621" width="58" height="38"/>
</element>
<element name="lamp25" ref="colour_button_150_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="112" y="619" width="62" height="42">
- </bounds>
+ <bounds x="112" y="619" width="62" height="42"/>
</element>
<element name="lamp25" ref="colour_button_150" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="114" y="621" width="58" height="38">
- </bounds>
+ <bounds x="114" y="621" width="58" height="38"/>
</element>
<element name="lamp24" ref="colour_button_151_border" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="20" y="619" width="62" height="42">
- </bounds>
+ <bounds x="20" y="619" width="62" height="42"/>
</element>
<element name="lamp24" ref="colour_button_151" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="22" y="621" width="58" height="38">
- </bounds>
+ <bounds x="22" y="621" width="58" height="38"/>
</element>
<element name="lamp41" ref="colour_button_152_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="612" y="619" width="62" height="42">
- </bounds>
+ <bounds x="612" y="619" width="62" height="42"/>
</element>
<element name="lamp41" ref="colour_button_152" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="614" y="621" width="58" height="38">
- </bounds>
+ <bounds x="614" y="621" width="58" height="38"/>
</element>
<element name="lamp56" ref="colour_button_154_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="580" y="60" width="47" height="62">
- </bounds>
+ <bounds x="580" y="60" width="47" height="62"/>
</element>
<element name="lamp56" ref="colour_button_154" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="582" y="62" width="43" height="58">
- </bounds>
+ <bounds x="582" y="62" width="43" height="58"/>
</element>
<element name="lamp40" ref="colour_button_155_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="524" y="619" width="72" height="42">
- </bounds>
+ <bounds x="524" y="619" width="72" height="42"/>
</element>
<element name="lamp40" ref="colour_button_155" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="526" y="621" width="68" height="38">
- </bounds>
+ <bounds x="526" y="621" width="68" height="38"/>
</element>
<element name="lamp33" ref="colour_button_156_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="429" y="622" width="42" height="32">
- </bounds>
+ <bounds x="429" y="622" width="42" height="32"/>
</element>
<element name="lamp33" ref="colour_button_156" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="431" y="624" width="38" height="28">
- </bounds>
+ <bounds x="431" y="624" width="38" height="28"/>
</element>
<element name="lamp34" ref="colour_button_157_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="471" y="622" width="42" height="32">
- </bounds>
+ <bounds x="471" y="622" width="42" height="32"/>
</element>
<element name="lamp34" ref="colour_button_157" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="473" y="624" width="38" height="28">
- </bounds>
+ <bounds x="473" y="624" width="38" height="28"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="72" y="359" width="24" height="32">
- </bounds>
+ <bounds x="72" y="359" width="24" height="32"/>
</element>
<element name="digit4" ref="led_digit_red">
- <bounds x="72" y="359" width="24" height="32">
- </bounds>
+ <bounds x="72" y="359" width="24" height="32"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="72" y="359" width="24" height="32">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="72" y="359" width="24" height="32"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="48" y="359" width="24" height="32">
- </bounds>
+ <bounds x="48" y="359" width="24" height="32"/>
</element>
<element name="digit3" ref="led_digit_red">
- <bounds x="48" y="359" width="24" height="32">
- </bounds>
+ <bounds x="48" y="359" width="24" height="32"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="48" y="359" width="24" height="32">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="48" y="359" width="24" height="32"/>
+ <color alpha="0.1"/>
</element>
<element ref="vfd0_background">
- <bounds x="210" y="252" width="200" height="30">
- </bounds>
+ <bounds x="210" y="252" width="200" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
- <bounds x="210" y="252" width="13" height="30">
- </bounds>
+ <bounds x="210" y="252" width="13" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
- <bounds x="223" y="252" width="13" height="30">
- </bounds>
+ <bounds x="223" y="252" width="13" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
- <bounds x="236" y="252" width="13" height="30">
- </bounds>
+ <bounds x="236" y="252" width="13" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
- <bounds x="249" y="252" width="13" height="30">
- </bounds>
+ <bounds x="249" y="252" width="13" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
- <bounds x="262" y="252" width="13" height="30">
- </bounds>
+ <bounds x="262" y="252" width="13" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
- <bounds x="275" y="252" width="13" height="30">
- </bounds>
+ <bounds x="275" y="252" width="13" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
- <bounds x="288" y="252" width="13" height="30">
- </bounds>
+ <bounds x="288" y="252" width="13" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
- <bounds x="301" y="252" width="13" height="30">
- </bounds>
+ <bounds x="301" y="252" width="13" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
- <bounds x="314" y="252" width="13" height="30">
- </bounds>
+ <bounds x="314" y="252" width="13" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
- <bounds x="327" y="252" width="13" height="30">
- </bounds>
+ <bounds x="327" y="252" width="13" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
- <bounds x="340" y="252" width="13" height="30">
- </bounds>
+ <bounds x="340" y="252" width="13" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
- <bounds x="353" y="252" width="13" height="30">
- </bounds>
+ <bounds x="353" y="252" width="13" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
- <bounds x="366" y="252" width="13" height="30">
- </bounds>
+ <bounds x="366" y="252" width="13" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
- <bounds x="379" y="252" width="13" height="30">
- </bounds>
+ <bounds x="379" y="252" width="13" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
- <bounds x="392" y="252" width="13" height="30">
- </bounds>
+ <bounds x="392" y="252" width="13" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
- <bounds x="405" y="252" width="13" height="30">
- </bounds>
+ <bounds x="405" y="252" width="13" height="30"/>
</element>
<element name="label28" ref="label_28">
- <bounds x="223" y="236" width="64" height="19">
- </bounds>
+ <bounds x="223" y="236" width="64" height="19"/>
</element>
<element name="label29" ref="label_29">
- <bounds x="342" y="236" width="41" height="19">
- </bounds>
+ <bounds x="342" y="236" width="41" height="19"/>
</element>
<element name="label137" ref="label_137">
- <bounds x="52" y="387" width="39" height="16">
- </bounds>
+ <bounds x="52" y="387" width="39" height="16"/>
</element>
<element name="label138" ref="label_138">
- <bounds x="60" y="396" width="23" height="16">
- </bounds>
+ <bounds x="60" y="396" width="23" height="16"/>
</element>
<element name="label141" ref="label_141">
- <bounds x="222" y="105" width="69" height="40">
- </bounds>
+ <bounds x="222" y="105" width="69" height="40"/>
</element>
<element name="label142" ref="label_142">
- <bounds x="219" y="80" width="84" height="40">
- </bounds>
+ <bounds x="219" y="80" width="84" height="40"/>
</element>
<element name="label146" ref="label_146">
- <bounds x="654" y="2" width="27" height="16">
- </bounds>
+ <bounds x="654" y="2" width="27" height="16"/>
</element>
<element name="label147" ref="label_147">
- <bounds x="625" y="379" width="50" height="32">
- </bounds>
+ <bounds x="625" y="379" width="50" height="32"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4andyfh.lay b/src/mame/layout/m4andyfh.lay
index f707e74c4bd..9efcb3c3a44 100644
--- a/src/mame/layout/m4andyfh.lay
+++ b/src/mame/layout/m4andyfh.lay
@@ -8,1317 +8,1004 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_71_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_71_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="NUDGE NOW !">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_78_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_78_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_70_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_70_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_94_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="FLO ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="STREAK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_93_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_93_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="ANDY ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="STREAK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="MIXED ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="STREAK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_49_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_49">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Cancel / ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Collect">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_50_border">
<rect state="1">
- <color red="0.00" green="0.00" blue="0.50">
- </color>
+ <color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.12">
- </color>
+ <color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="colour_button_50">
<rect state="1">
- <color red="0.00" green="0.00" blue="1.00">
- </color>
+ <color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.25">
- </color>
+ <color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="Streak">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_51_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_51">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="Start">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_52_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_52">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_53_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_53">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_54_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_54">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_55_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_55">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="Select">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Streak">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_56_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_56">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="50p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_57_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_57">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="20p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_58_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_58">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="10p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_59_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_59">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="20p ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Tkn">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_60_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_60">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="TripleBar,Andy,DoubleBar,Red7,TripleBar,DoubleBar,Blue7,DoubleBar,SingleBar,Red7,SingleBar,TripleBar,Flo,DoubleBar,SingleBar,Blue7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,SingleBar,Andy,Blue7,TripleBar,DoubleBar,Red7,DoubleBar,SingleBar,Blue7,SingleBar,Flo,Red7,DoubleBar,SingleBar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,DoubleBar,Blue7,Flo,SingleBar,Red7,SingleBar,TripleBar,Blue7,DoubleBar,Andy,Blue7,TripleBar,SingleBar,DoubleBar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_9">
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_10">
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_11">
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_12">
<text string="X">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_22">
<text string="ANDY'S FULL HOUSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_25">
<text string="&#xA3;10.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_26">
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_27">
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_28">
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_29">
<text string="&#xA3;3.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_33">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_37">
<text string="BANK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_38">
<text string="Munsta/Wayfinder ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="June 2002">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_39">
<text string="PLAYS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="794" height="515">
- </bounds>
+ <bounds x="0" y="0" width="794" height="515"/>
</element>
<element ref="reel_background">
- <bounds x="262" y="292" width="80" height="140">
- </bounds>
+ <bounds x="262" y="292" width="80" height="140"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="262.0000" y="292.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="262.0000" y="292.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="265.3333" y="293.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="265.3333" y="293.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="268.6667" y="295.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="268.6667" y="295.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="272.0000" y="297.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="272.0000" y="297.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="275.3333" y="299.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="275.3333" y="299.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="278.6667" y="301.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="278.6667" y="301.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="262.0000" y="338.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="262.0000" y="338.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="265.3333" y="340.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="265.3333" y="340.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="268.6667" y="342.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="268.6667" y="342.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="272.0000" y="344.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="272.0000" y="344.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="275.3333" y="346.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="275.3333" y="346.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="278.6667" y="348.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="278.6667" y="348.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="262.0000" y="385.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="262.0000" y="385.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="265.3333" y="387.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="265.3333" y="387.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="268.6667" y="389.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="268.6667" y="389.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="272.0000" y="391.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="272.0000" y="391.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="275.3333" y="393.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="275.3333" y="393.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="278.6667" y="395.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="278.6667" y="395.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="262" y="292" width="80" height="140">
- </bounds>
+ <bounds x="262" y="292" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="359" y="293" width="80" height="140">
- </bounds>
+ <bounds x="359" y="293" width="80" height="140"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="359.0000" y="293.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="359.0000" y="293.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="362.3333" y="294.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="362.3333" y="294.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="365.6667" y="296.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="365.6667" y="296.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="369.0000" y="298.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="369.0000" y="298.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="372.3333" y="300.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="372.3333" y="300.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="375.6667" y="302.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="375.6667" y="302.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="359.0000" y="339.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="359.0000" y="339.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="362.3333" y="341.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="362.3333" y="341.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="365.6667" y="343.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="365.6667" y="343.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="369.0000" y="345.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="369.0000" y="345.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="372.3333" y="347.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="372.3333" y="347.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="375.6667" y="349.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="375.6667" y="349.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="359.0000" y="386.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="359.0000" y="386.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="362.3333" y="388.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="362.3333" y="388.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="365.6667" y="390.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="365.6667" y="390.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="369.0000" y="392.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="369.0000" y="392.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="372.3333" y="394.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="372.3333" y="394.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="375.6667" y="396.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="375.6667" y="396.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="359" y="293" width="80" height="140">
- </bounds>
+ <bounds x="359" y="293" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="455" y="293" width="80" height="140">
- </bounds>
+ <bounds x="455" y="293" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="455.0000" y="293.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="455.0000" y="293.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="458.3333" y="294.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="458.3333" y="294.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="461.6667" y="296.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="461.6667" y="296.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="465.0000" y="298.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="465.0000" y="298.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="468.3333" y="300.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="468.3333" y="300.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="471.6667" y="302.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="471.6667" y="302.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="455.0000" y="339.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="455.0000" y="339.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="458.3333" y="341.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="458.3333" y="341.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="461.6667" y="343.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="461.6667" y="343.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="465.0000" y="345.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="465.0000" y="345.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="468.3333" y="347.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="468.3333" y="347.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="471.6667" y="349.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="471.6667" y="349.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="455.0000" y="386.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="455.0000" y="386.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="458.3333" y="388.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="458.3333" y="388.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="461.6667" y="390.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="461.6667" y="390.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="465.0000" y="392.1667" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="465.0000" y="392.1667" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="468.3333" y="394.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="468.3333" y="394.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="471.6667" y="396.0556" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="471.6667" y="396.0556" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="455" y="293" width="80" height="140">
- </bounds>
+ <bounds x="455" y="293" width="80" height="140"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="579" y="330" width="47" height="47">
- </bounds>
+ <bounds x="579" y="330" width="47" height="47"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="581" y="332" width="43" height="43">
- </bounds>
+ <bounds x="581" y="332" width="43" height="43"/>
</element>
<element name="lamp71" ref="lamp_71_1_border" state="0">
- <bounds x="580" y="291" width="149" height="32">
- </bounds>
+ <bounds x="580" y="291" width="149" height="32"/>
</element>
<element name="lamp71" ref="lamp_71_1" state="0">
- <bounds x="582" y="293" width="145" height="28">
- </bounds>
+ <bounds x="582" y="293" width="145" height="28"/>
</element>
<element name="lamp78" ref="lamp_78_1_border" state="0">
- <bounds x="632" y="329" width="47" height="47">
- </bounds>
+ <bounds x="632" y="329" width="47" height="47"/>
</element>
<element name="lamp78" ref="lamp_78_1" state="0">
- <bounds x="634" y="331" width="43" height="43">
- </bounds>
+ <bounds x="634" y="331" width="43" height="43"/>
</element>
<element name="lamp70" ref="lamp_70_1_border" state="0">
- <bounds x="684" y="329" width="47" height="47">
- </bounds>
+ <bounds x="684" y="329" width="47" height="47"/>
</element>
<element name="lamp70" ref="lamp_70_1" state="0">
- <bounds x="686" y="331" width="43" height="43">
- </bounds>
+ <bounds x="686" y="331" width="43" height="43"/>
</element>
<element name="lamp94" ref="lamp_94_1_border" state="0">
- <bounds x="80" y="70" width="122" height="42">
- </bounds>
+ <bounds x="80" y="70" width="122" height="42"/>
</element>
<element name="lamp94" ref="lamp_94_1" state="0">
- <bounds x="82" y="72" width="118" height="38">
- </bounds>
+ <bounds x="82" y="72" width="118" height="38"/>
</element>
<element name="lamp93" ref="lamp_93_1_border" state="0">
- <bounds x="80" y="23" width="122" height="42">
- </bounds>
+ <bounds x="80" y="23" width="122" height="42"/>
</element>
<element name="lamp93" ref="lamp_93_1" state="0">
- <bounds x="82" y="25" width="118" height="38">
- </bounds>
+ <bounds x="82" y="25" width="118" height="38"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="80" y="116" width="122" height="42">
- </bounds>
+ <bounds x="80" y="116" width="122" height="42"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="82" y="118" width="118" height="38">
- </bounds>
+ <bounds x="82" y="118" width="118" height="38"/>
</element>
<element name="lamp25" ref="colour_button_49_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="164" y="445" width="77" height="47">
- </bounds>
+ <bounds x="164" y="445" width="77" height="47"/>
</element>
<element name="lamp25" ref="colour_button_49" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="166" y="447" width="73" height="43">
- </bounds>
+ <bounds x="166" y="447" width="73" height="43"/>
</element>
<element name="lamp40" ref="colour_button_50_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="549" y="445" width="77" height="47">
- </bounds>
+ <bounds x="549" y="445" width="77" height="47"/>
</element>
<element name="lamp40" ref="colour_button_50" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="551" y="447" width="73" height="43">
- </bounds>
+ <bounds x="551" y="447" width="73" height="43"/>
</element>
<element name="lamp41" ref="colour_button_51_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="639" y="444" width="92" height="47">
- </bounds>
+ <bounds x="639" y="444" width="92" height="47"/>
</element>
<element name="lamp41" ref="colour_button_51" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="641" y="446" width="88" height="43">
- </bounds>
+ <bounds x="641" y="446" width="88" height="43"/>
</element>
<element name="lamp26" ref="colour_button_52_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="265" y="445" width="77" height="47">
- </bounds>
+ <bounds x="265" y="445" width="77" height="47"/>
</element>
<element name="lamp26" ref="colour_button_52" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="267" y="447" width="73" height="43">
- </bounds>
+ <bounds x="267" y="447" width="73" height="43"/>
</element>
<element name="lamp32" ref="colour_button_53_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="361" y="445" width="77" height="47">
- </bounds>
+ <bounds x="361" y="445" width="77" height="47"/>
</element>
<element name="lamp32" ref="colour_button_53" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="363" y="447" width="73" height="43">
- </bounds>
+ <bounds x="363" y="447" width="73" height="43"/>
</element>
<element name="lamp33" ref="colour_button_54_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="456" y="445" width="77" height="47">
- </bounds>
+ <bounds x="456" y="445" width="77" height="47"/>
</element>
<element name="lamp33" ref="colour_button_54" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="458" y="447" width="73" height="43">
- </bounds>
+ <bounds x="458" y="447" width="73" height="43"/>
</element>
<element name="lamp34" ref="colour_button_55_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="101" y="167" width="77" height="47">
- </bounds>
+ <bounds x="101" y="167" width="77" height="47"/>
</element>
<element name="lamp34" ref="colour_button_55" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="103" y="169" width="73" height="43">
- </bounds>
+ <bounds x="103" y="169" width="73" height="43"/>
</element>
<element name="lamp57" ref="colour_button_56_border" state="0" inputtag="AUX2" inputmask="0x40">
- <bounds x="654" y="12" width="52" height="36">
- </bounds>
+ <bounds x="654" y="12" width="52" height="36"/>
</element>
<element name="lamp57" ref="colour_button_56" state="0" inputtag="AUX2" inputmask="0x40">
- <bounds x="656" y="14" width="48" height="32">
- </bounds>
+ <bounds x="656" y="14" width="48" height="32"/>
</element>
<element name="lamp57" ref="colour_button_57_border" state="0" inputtag="AUX2" inputmask="0x20">
- <bounds x="671" y="52" width="36" height="36">
- </bounds>
+ <bounds x="671" y="52" width="36" height="36"/>
</element>
<element name="lamp57" ref="colour_button_57" state="0" inputtag="AUX2" inputmask="0x20">
- <bounds x="673" y="54" width="32" height="32">
- </bounds>
+ <bounds x="673" y="54" width="32" height="32"/>
</element>
<element name="lamp57" ref="colour_button_58_border" state="0" inputtag="AUX2" inputmask="0x10">
- <bounds x="634" y="52" width="36" height="36">
- </bounds>
+ <bounds x="634" y="52" width="36" height="36"/>
</element>
<element name="lamp57" ref="colour_button_58" state="0" inputtag="AUX2" inputmask="0x10">
- <bounds x="636" y="54" width="32" height="32">
- </bounds>
+ <bounds x="636" y="54" width="32" height="32"/>
</element>
<element name="lamp57" ref="colour_button_59_border" state="0" inputtag="DIL2" inputmask="0x08">
- <bounds x="597" y="52" width="36" height="36">
- </bounds>
+ <bounds x="597" y="52" width="36" height="36"/>
</element>
<element name="lamp57" ref="colour_button_59" state="0" inputtag="DIL2" inputmask="0x08">
- <bounds x="599" y="54" width="32" height="32">
- </bounds>
+ <bounds x="599" y="54" width="32" height="32"/>
</element>
<element name="lamp57" ref="colour_button_60_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="596" y="12" width="52" height="36">
- </bounds>
+ <bounds x="596" y="12" width="52" height="36"/>
</element>
<element name="lamp57" ref="colour_button_60" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="598" y="14" width="48" height="32">
- </bounds>
+ <bounds x="598" y="14" width="48" height="32"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="681" y="218" width="30" height="42">
- </bounds>
+ <bounds x="681" y="218" width="30" height="42"/>
</element>
<element name="digit7" ref="led_digit_red">
- <bounds x="681" y="218" width="30" height="42">
- </bounds>
+ <bounds x="681" y="218" width="30" height="42"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="681" y="218" width="30" height="42">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="681" y="218" width="30" height="42"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="651" y="218" width="30" height="42">
- </bounds>
+ <bounds x="651" y="218" width="30" height="42"/>
</element>
<element name="digit6" ref="led_digit_red">
- <bounds x="651" y="218" width="30" height="42">
- </bounds>
+ <bounds x="651" y="218" width="30" height="42"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="651" y="218" width="30" height="42">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="651" y="218" width="30" height="42"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="621" y="218" width="30" height="42">
- </bounds>
+ <bounds x="621" y="218" width="30" height="42"/>
</element>
<element name="digit5" ref="led_digit_red">
- <bounds x="621" y="218" width="30" height="42">
- </bounds>
+ <bounds x="621" y="218" width="30" height="42"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="621" y="218" width="30" height="42">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="621" y="218" width="30" height="42"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="626" y="125" width="28" height="36">
- </bounds>
+ <bounds x="626" y="125" width="28" height="36"/>
</element>
<element name="digit3" ref="led_digit_red">
- <bounds x="626" y="125" width="28" height="36">
- </bounds>
+ <bounds x="626" y="125" width="28" height="36"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="626" y="125" width="28" height="36">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="626" y="125" width="28" height="36"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="654" y="125" width="28" height="36">
- </bounds>
+ <bounds x="654" y="125" width="28" height="36"/>
</element>
<element name="digit4" ref="led_digit_red">
- <bounds x="654" y="125" width="28" height="36">
- </bounds>
+ <bounds x="654" y="125" width="28" height="36"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="654" y="125" width="28" height="36">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="654" y="125" width="28" height="36"/>
+ <color alpha="0.1"/>
</element>
<element name="label9" ref="label_9">
- <bounds x="437" y="175" width="14" height="24">
- </bounds>
+ <bounds x="437" y="175" width="14" height="24"/>
</element>
<element name="label10" ref="label_10">
- <bounds x="350" y="177" width="14" height="24">
- </bounds>
+ <bounds x="350" y="177" width="14" height="24"/>
</element>
<element name="label11" ref="label_11">
- <bounds x="437" y="94" width="14" height="24">
- </bounds>
+ <bounds x="437" y="94" width="14" height="24"/>
</element>
<element name="label12" ref="label_12">
- <bounds x="350" y="93" width="14" height="24">
- </bounds>
+ <bounds x="350" y="93" width="14" height="24"/>
</element>
<element name="label22" ref="label_22">
- <bounds x="553" y="383" width="197" height="22">
- </bounds>
+ <bounds x="553" y="383" width="197" height="22"/>
</element>
<element name="label25" ref="label_25">
- <bounds x="153" y="247" width="66" height="24">
- </bounds>
+ <bounds x="153" y="247" width="66" height="24"/>
</element>
<element name="label26" ref="label_26">
- <bounds x="158" y="395" width="49" height="22">
- </bounds>
+ <bounds x="158" y="395" width="49" height="22"/>
</element>
<element name="label27" ref="label_27">
- <bounds x="158" y="360" width="49" height="22">
- </bounds>
+ <bounds x="158" y="360" width="49" height="22"/>
</element>
<element name="label28" ref="label_28">
- <bounds x="159" y="322" width="49" height="22">
- </bounds>
+ <bounds x="159" y="322" width="49" height="22"/>
</element>
<element name="label29" ref="label_29">
- <bounds x="157" y="284" width="54" height="24">
- </bounds>
+ <bounds x="157" y="284" width="54" height="24"/>
</element>
<element name="label33" ref="label_33">
- <bounds x="586" y="211" width="27" height="56">
- </bounds>
+ <bounds x="586" y="211" width="27" height="56"/>
</element>
<element name="label37" ref="label_37">
- <bounds x="621" y="186" width="59" height="24">
- </bounds>
+ <bounds x="621" y="186" width="59" height="24"/>
</element>
<element name="label38" ref="label_38">
- <bounds x="605" y="408" width="91" height="26">
- </bounds>
+ <bounds x="605" y="408" width="91" height="26"/>
</element>
<element name="label39" ref="label_39">
- <bounds x="625" y="101" width="52" height="19">
- </bounds>
+ <bounds x="625" y="101" width="52" height="19"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4andyge.lay b/src/mame/layout/m4andyge.lay
index 0c1f159d49c..6956f3a0a5b 100644
--- a/src/mame/layout/m4andyge.lay
+++ b/src/mame/layout/m4andyge.lay
@@ -8,2687 +8,2052 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_126_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_126_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_127_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_127_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="60p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="80p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_103_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_88_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;3.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_90_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_90_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;3.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_91_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_91_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Referee">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_92_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_92_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_94_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_94_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Hic">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_95_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_95_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;3.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;4.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Referee">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_87_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_87_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;5.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_72_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_72_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Rent Man">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_73_1_border" defstate="0">
<rect state="1">
- <color red="0.49" green="0.49" blue="0.00">
- </color>
+ <color red="0.49" green="0.49" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_73_1" defstate="0">
<rect state="1">
- <color red="0.98" green="0.98" blue="0.00">
- </color>
+ <color red="0.98" green="0.98" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.24" green="0.24" blue="0.00">
- </color>
+ <color red="0.24" green="0.24" blue="0.00"/>
</rect>
<text string="Jackpot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;10 ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Referee">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;2.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Hic">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_106_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_106_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_105_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_105_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;1.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_117_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_117_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Fight">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Referee">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Nudge Pot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_104_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Rent Man">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_111_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_111_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_63_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_63_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Play On">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_61_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_61_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Free Kick">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_62_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_62_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Foul">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_60_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_60_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Sent Off">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_46_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_46_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Mixed 7's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_30_1_border" defstate="0">
<rect state="1">
- <color red="0.39" green="0.01" blue="0.22">
- </color>
+ <color red="0.39" green="0.01" blue="0.22"/>
</rect>
<rect state="0">
- <color red="0.10" green="0.00" blue="0.05">
- </color>
+ <color red="0.10" green="0.00" blue="0.05"/>
</rect>
</element>
<element name="lamp_30_1" defstate="0">
<rect state="1">
- <color red="0.78" green="0.02" blue="0.44">
- </color>
+ <color red="0.78" green="0.02" blue="0.44"/>
</rect>
<rect state="0">
- <color red="0.20" green="0.00" blue="0.11">
- </color>
+ <color red="0.20" green="0.00" blue="0.11"/>
</rect>
<text string="Double Bar's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_38_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_38_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="Single Bar's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.60">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_22_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.44" blue="0.08">
- </color>
+ <color red="0.45" green="0.44" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.11" blue="0.02">
- </color>
+ <color red="0.11" green="0.11" blue="0.02"/>
</rect>
</element>
<element name="lamp_22_1" defstate="0">
<rect state="1">
- <color red="0.89" green="0.88" blue="0.16">
- </color>
+ <color red="0.89" green="0.88" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.22" blue="0.04">
- </color>
+ <color red="0.22" green="0.22" blue="0.04"/>
</rect>
<text string="Triple Bar's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_6_1_border" defstate="0">
<rect state="1">
- <color red="0.46" green="0.00" blue="0.00">
- </color>
+ <color red="0.46" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.00" blue="0.00">
- </color>
+ <color red="0.11" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_6_1" defstate="0">
<rect state="1">
- <color red="0.92" green="0.00" blue="0.00">
- </color>
+ <color red="0.92" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.23" green="0.00" blue="0.00">
- </color>
+ <color red="0.23" green="0.00" blue="0.00"/>
</rect>
<text string="Red Seven's ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;10.00 Jackpot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_14_1_border" defstate="0">
<rect state="1">
- <color red="0.21" green="0.21" blue="0.50">
- </color>
+ <color red="0.21" green="0.21" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.05" green="0.05" blue="0.12">
- </color>
+ <color red="0.05" green="0.05" blue="0.12"/>
</rect>
</element>
<element name="lamp_14_1" defstate="0">
<rect state="1">
- <color red="0.42" green="0.42" blue="1.00">
- </color>
+ <color red="0.42" green="0.42" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.10" green="0.10" blue="0.25">
- </color>
+ <color red="0.10" green="0.10" blue="0.25"/>
</rect>
<text string="Blue Seven's">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;3.00">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_47_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_47_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_39_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_39_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_31_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_31_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_23_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_23_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_15_1_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_15_1" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="EX">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_42_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_42_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="NUDGE NOW">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_33_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_33_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Higher">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_34_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_34_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Lower">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_134_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_134">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Exchange For ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Feature">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_135_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_135">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Start">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Gamble">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_136_border">
<rect state="1">
- <color red="0.03" green="0.00" blue="0.00">
- </color>
+ <color red="0.03" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_136">
<rect state="1">
- <color red="0.06" green="0.00" blue="0.00">
- </color>
+ <color red="0.06" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.01" green="0.00" blue="0.00">
- </color>
+ <color red="0.01" green="0.00" blue="0.00"/>
</rect>
<text string="Insert">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_137_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_137">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Lower">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_138_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_138">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Higher">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_139_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_139">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Hold /">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_140_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_140">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Hold /">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_141_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_141">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Hold /">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_142_border">
<rect state="1">
- <color red="0.45" green="0.17" blue="0.27">
- </color>
+ <color red="0.45" green="0.17" blue="0.27"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.04" blue="0.07">
- </color>
+ <color red="0.11" green="0.04" blue="0.07"/>
</rect>
</element>
<element name="colour_button_142">
<rect state="1">
- <color red="0.89" green="0.35" blue="0.54">
- </color>
+ <color red="0.89" green="0.35" blue="0.54"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.09" blue="0.13">
- </color>
+ <color red="0.22" green="0.09" blue="0.13"/>
</rect>
<text string="Collect / ">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cancel">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="TripleBar(*),SingleBar,DoubleBar,Red7(*),TripleBar,DoubleBar,Blue7,DoubleBar,SingleBar(*),Red7,SingleBar,TripleBar,Blue7,DoubleBar(*),SingleBar,Blue7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,SingleBar,DoubleBar(*),Blue7,TripleBar,DoubleBar,Red7,DoubleBar,SingleBar(*),Blue7,SingleBar,TripleBar,Red7,DoubleBar(*),SingleBar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,DoubleBar,Blue7(*),DoubleBar,SingleBar,Red7(*),SingleBar,TripleBar(*),Blue7,DoubleBar,SingleBar,Blue7,TripleBar(*),SingleBar,DoubleBar">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="Andy 12,Andy 1,Andy 2,Andy 3,Andy 4,Andy 5,Andy 6,Andy 7,Andy 8,Andy 9,Andy 10,Andy 11">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel4" defstate="0">
<reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="Flo 12,Flo 1,Flo 2,Flo 3,Flo 4,Flo 5,Flo 6,Flo 7,Flo 8,Flo 9,Flo 10,Flo 11">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="vfd0">
<led16segsc>
- <color red="0.0" green="1.0" blue="1.0">
- </color>
+ <color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_109">
<text string="Referee's Whistle">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_110">
<text string="Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_113">
<text string="Looker.">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="1018" height="683">
- </bounds>
+ <bounds x="0" y="0" width="1018" height="683"/>
</element>
<element ref="reel_background">
- <bounds x="239" y="400" width="105" height="190">
- </bounds>
+ <bounds x="239" y="400" width="105" height="190"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="239.0000" y="400.0000" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="239.0000" y="400.0000" width="105.0000" height="63.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="243.3750" y="402.6389" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="243.3750" y="402.6389" width="96.2500" height="58.0556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="247.7500" y="405.2778" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="247.7500" y="405.2778" width="87.5000" height="52.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.1250" y="407.9167" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="252.1250" y="407.9167" width="78.7500" height="47.5000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="256.5000" y="410.5555" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="256.5000" y="410.5555" width="70.0000" height="42.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="260.8750" y="413.1945" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="260.8750" y="413.1945" width="61.2500" height="36.9444"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="239.0000" y="463.3333" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="239.0000" y="463.3333" width="105.0000" height="63.3333"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="243.3750" y="465.9722" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="243.3750" y="465.9722" width="96.2500" height="58.0556"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="247.7500" y="468.6111" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="247.7500" y="468.6111" width="87.5000" height="52.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.1250" y="471.2500" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="252.1250" y="471.2500" width="78.7500" height="47.5000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="256.5000" y="473.8889" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="256.5000" y="473.8889" width="70.0000" height="42.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="260.8750" y="476.5278" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="260.8750" y="476.5278" width="61.2500" height="36.9444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="239.0000" y="526.6667" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="239.0000" y="526.6667" width="105.0000" height="63.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="243.3750" y="529.3056" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="243.3750" y="529.3056" width="96.2500" height="58.0556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="247.7500" y="531.9445" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="247.7500" y="531.9445" width="87.5000" height="52.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="252.1250" y="534.5834" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="252.1250" y="534.5834" width="78.7500" height="47.5000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="256.5000" y="537.2222" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="256.5000" y="537.2222" width="70.0000" height="42.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="260.8750" y="539.8611" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="260.8750" y="539.8611" width="61.2500" height="36.9444"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="239" y="400" width="105" height="190">
- </bounds>
+ <bounds x="239" y="400" width="105" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="353" y="400" width="105" height="190">
- </bounds>
+ <bounds x="353" y="400" width="105" height="190"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="353.0000" y="400.0000" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="353.0000" y="400.0000" width="105.0000" height="63.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="357.3750" y="402.6389" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="357.3750" y="402.6389" width="96.2500" height="58.0556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="361.7500" y="405.2778" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="361.7500" y="405.2778" width="87.5000" height="52.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="366.1250" y="407.9167" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="366.1250" y="407.9167" width="78.7500" height="47.5000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="370.5000" y="410.5555" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="370.5000" y="410.5555" width="70.0000" height="42.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="374.8750" y="413.1945" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="374.8750" y="413.1945" width="61.2500" height="36.9444"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="353.0000" y="463.3333" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="353.0000" y="463.3333" width="105.0000" height="63.3333"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="357.3750" y="465.9722" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="357.3750" y="465.9722" width="96.2500" height="58.0556"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="361.7500" y="468.6111" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="361.7500" y="468.6111" width="87.5000" height="52.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="366.1250" y="471.2500" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="366.1250" y="471.2500" width="78.7500" height="47.5000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="370.5000" y="473.8889" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="370.5000" y="473.8889" width="70.0000" height="42.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="374.8750" y="476.5278" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="374.8750" y="476.5278" width="61.2500" height="36.9444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="353.0000" y="526.6667" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="353.0000" y="526.6667" width="105.0000" height="63.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="357.3750" y="529.3056" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="357.3750" y="529.3056" width="96.2500" height="58.0556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="361.7500" y="531.9445" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="361.7500" y="531.9445" width="87.5000" height="52.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="366.1250" y="534.5834" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="366.1250" y="534.5834" width="78.7500" height="47.5000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="370.5000" y="537.2222" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="370.5000" y="537.2222" width="70.0000" height="42.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="374.8750" y="539.8611" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="374.8750" y="539.8611" width="61.2500" height="36.9444"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="353" y="400" width="105" height="190">
- </bounds>
+ <bounds x="353" y="400" width="105" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="467" y="400" width="105" height="190">
- </bounds>
+ <bounds x="467" y="400" width="105" height="190"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="467.0000" y="400.0000" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="467.0000" y="400.0000" width="105.0000" height="63.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="471.3750" y="402.6389" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="471.3750" y="402.6389" width="96.2500" height="58.0556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="475.7500" y="405.2778" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="475.7500" y="405.2778" width="87.5000" height="52.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="480.1250" y="407.9167" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="480.1250" y="407.9167" width="78.7500" height="47.5000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="484.5000" y="410.5555" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="484.5000" y="410.5555" width="70.0000" height="42.2222"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="488.8750" y="413.1945" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="488.8750" y="413.1945" width="61.2500" height="36.9444"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="467.0000" y="463.3333" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="467.0000" y="463.3333" width="105.0000" height="63.3333"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="471.3750" y="465.9722" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="471.3750" y="465.9722" width="96.2500" height="58.0556"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="475.7500" y="468.6111" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="475.7500" y="468.6111" width="87.5000" height="52.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="480.1250" y="471.2500" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="480.1250" y="471.2500" width="78.7500" height="47.5000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="484.5000" y="473.8889" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="484.5000" y="473.8889" width="70.0000" height="42.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="488.8750" y="476.5278" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="488.8750" y="476.5278" width="61.2500" height="36.9444"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="467.0000" y="526.6667" width="105.0000" height="63.3333">
- </bounds>
+ <bounds x="467.0000" y="526.6667" width="105.0000" height="63.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="471.3750" y="529.3056" width="96.2500" height="58.0556">
- </bounds>
+ <bounds x="471.3750" y="529.3056" width="96.2500" height="58.0556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="475.7500" y="531.9445" width="87.5000" height="52.7778">
- </bounds>
+ <bounds x="475.7500" y="531.9445" width="87.5000" height="52.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="480.1250" y="534.5834" width="78.7500" height="47.5000">
- </bounds>
+ <bounds x="480.1250" y="534.5834" width="78.7500" height="47.5000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="484.5000" y="537.2222" width="70.0000" height="42.2222">
- </bounds>
+ <bounds x="484.5000" y="537.2222" width="70.0000" height="42.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="488.8750" y="539.8611" width="61.2500" height="36.9444">
- </bounds>
+ <bounds x="488.8750" y="539.8611" width="61.2500" height="36.9444"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="467" y="400" width="105" height="190">
- </bounds>
+ <bounds x="467" y="400" width="105" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="300" y="92" width="100" height="80">
- </bounds>
+ <bounds x="300" y="92" width="100" height="80"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="300" y="92" width="100" height="80">
- </bounds>
+ <bounds x="300" y="92" width="100" height="80"/>
</element>
<element ref="reel_background">
- <bounds x="471" y="91" width="100" height="80">
- </bounds>
+ <bounds x="471" y="91" width="100" height="80"/>
</element>
<element name="sreel5" ref="reel4" state="0">
- <bounds x="471" y="91" width="100" height="80">
- </bounds>
+ <bounds x="471" y="91" width="100" height="80"/>
</element>
<element name="lamp126" ref="lamp_126_1_border" state="0">
- <bounds x="936" y="436" width="62" height="32">
- </bounds>
+ <bounds x="936" y="436" width="62" height="32"/>
</element>
<element name="lamp126" ref="lamp_126_1" state="0">
- <bounds x="938" y="438" width="58" height="28">
- </bounds>
+ <bounds x="938" y="438" width="58" height="28"/>
</element>
<element name="lamp127" ref="lamp_127_1_border" state="0">
- <bounds x="881" y="404" width="69" height="30">
- </bounds>
+ <bounds x="881" y="404" width="69" height="30"/>
</element>
<element name="lamp127" ref="lamp_127_1" state="0">
- <bounds x="883" y="406" width="65" height="26">
- </bounds>
+ <bounds x="883" y="406" width="65" height="26"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="739" y="356" width="62" height="32">
- </bounds>
+ <bounds x="739" y="356" width="62" height="32"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="741" y="358" width="58" height="28">
- </bounds>
+ <bounds x="741" y="358" width="58" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="520" y="225" width="69" height="30">
- </bounds>
+ <bounds x="520" y="225" width="69" height="30"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="522" y="227" width="65" height="26">
- </bounds>
+ <bounds x="522" y="227" width="65" height="26"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="592" y="233" width="69" height="30">
- </bounds>
+ <bounds x="592" y="233" width="69" height="30"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="594" y="235" width="65" height="26">
- </bounds>
+ <bounds x="594" y="235" width="65" height="26"/>
</element>
<element name="lamp103" ref="lamp_103_1_border" state="0">
- <bounds x="753" y="273" width="69" height="30">
- </bounds>
+ <bounds x="753" y="273" width="69" height="30"/>
</element>
<element name="lamp103" ref="lamp_103_1" state="0">
- <bounds x="755" y="275" width="65" height="26">
- </bounds>
+ <bounds x="755" y="275" width="65" height="26"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="821" y="290" width="69" height="30">
- </bounds>
+ <bounds x="821" y="290" width="69" height="30"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="823" y="292" width="65" height="26">
- </bounds>
+ <bounds x="823" y="292" width="65" height="26"/>
</element>
<element name="lamp90" ref="lamp_90_1_border" state="0">
- <bounds x="896" y="222" width="69" height="30">
- </bounds>
+ <bounds x="896" y="222" width="69" height="30"/>
</element>
<element name="lamp90" ref="lamp_90_1" state="0">
- <bounds x="898" y="224" width="65" height="26">
- </bounds>
+ <bounds x="898" y="224" width="65" height="26"/>
</element>
<element name="lamp91" ref="lamp_91_1_border" state="0">
- <bounds x="893" y="192" width="69" height="30">
- </bounds>
+ <bounds x="893" y="192" width="69" height="30"/>
</element>
<element name="lamp91" ref="lamp_91_1" state="0">
- <bounds x="895" y="194" width="65" height="26">
- </bounds>
+ <bounds x="895" y="194" width="65" height="26"/>
</element>
<element name="lamp92" ref="lamp_92_1_border" state="0">
- <bounds x="890" y="161" width="62" height="32">
- </bounds>
+ <bounds x="890" y="161" width="62" height="32"/>
</element>
<element name="lamp92" ref="lamp_92_1" state="0">
- <bounds x="892" y="163" width="58" height="28">
- </bounds>
+ <bounds x="892" y="163" width="58" height="28"/>
</element>
<element name="lamp94" ref="lamp_94_1_border" state="0">
- <bounds x="767" y="129" width="69" height="30">
- </bounds>
+ <bounds x="767" y="129" width="69" height="30"/>
</element>
<element name="lamp94" ref="lamp_94_1" state="0">
- <bounds x="769" y="131" width="65" height="26">
- </bounds>
+ <bounds x="769" y="131" width="65" height="26"/>
</element>
<element name="lamp95" ref="lamp_95_1_border" state="0">
- <bounds x="697" y="129" width="69" height="30">
- </bounds>
+ <bounds x="697" y="129" width="69" height="30"/>
</element>
<element name="lamp95" ref="lamp_95_1" state="0">
- <bounds x="699" y="131" width="65" height="26">
- </bounds>
+ <bounds x="699" y="131" width="65" height="26"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="632" y="116" width="62" height="32">
- </bounds>
+ <bounds x="632" y="116" width="62" height="32"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="634" y="118" width="58" height="28">
- </bounds>
+ <bounds x="634" y="118" width="58" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="575" y="29" width="62" height="32">
- </bounds>
+ <bounds x="575" y="29" width="62" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="577" y="31" width="58" height="28">
- </bounds>
+ <bounds x="577" y="31" width="58" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="505" y="19" width="69" height="30">
- </bounds>
+ <bounds x="505" y="19" width="69" height="30"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="507" y="21" width="65" height="26">
- </bounds>
+ <bounds x="507" y="21" width="65" height="26"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="441" y="11" width="62" height="32">
- </bounds>
+ <bounds x="441" y="11" width="62" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="443" y="13" width="58" height="28">
- </bounds>
+ <bounds x="443" y="13" width="58" height="28"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="292" y="19" width="62" height="32">
- </bounds>
+ <bounds x="292" y="19" width="62" height="32"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="294" y="21" width="58" height="28">
- </bounds>
+ <bounds x="294" y="21" width="58" height="28"/>
</element>
<element name="lamp87" ref="lamp_87_1_border" state="0">
- <bounds x="228" y="20" width="62" height="32">
- </bounds>
+ <bounds x="228" y="20" width="62" height="32"/>
</element>
<element name="lamp87" ref="lamp_87_1" state="0">
- <bounds x="230" y="22" width="58" height="28">
- </bounds>
+ <bounds x="230" y="22" width="58" height="28"/>
</element>
<element name="lamp72" ref="lamp_72_1_border" state="0">
- <bounds x="164" y="20" width="62" height="32">
- </bounds>
+ <bounds x="164" y="20" width="62" height="32"/>
</element>
<element name="lamp72" ref="lamp_72_1" state="0">
- <bounds x="166" y="22" width="58" height="28">
- </bounds>
+ <bounds x="166" y="22" width="58" height="28"/>
</element>
<element name="lamp73" ref="lamp_73_1_border" state="0">
- <bounds x="9" y="7" width="154" height="87">
- </bounds>
+ <bounds x="9" y="7" width="154" height="87"/>
</element>
<element name="lamp73" ref="lamp_73_1" state="0">
- <bounds x="11" y="9" width="150" height="83">
- </bounds>
+ <bounds x="11" y="9" width="150" height="83"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="448" y="212" width="69" height="30">
- </bounds>
+ <bounds x="448" y="212" width="69" height="30"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="450" y="214" width="65" height="26">
- </bounds>
+ <bounds x="450" y="214" width="65" height="26"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="377" y="205" width="69" height="30">
- </bounds>
+ <bounds x="377" y="205" width="69" height="30"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="379" y="207" width="65" height="26">
- </bounds>
+ <bounds x="379" y="207" width="65" height="26"/>
</element>
<element name="lamp109" ref="lamp_109_1_border" state="0">
- <bounds x="48" y="173" width="69" height="30">
- </bounds>
+ <bounds x="48" y="173" width="69" height="30"/>
</element>
<element name="lamp109" ref="lamp_109_1" state="0">
- <bounds x="50" y="175" width="65" height="26">
- </bounds>
+ <bounds x="50" y="175" width="65" height="26"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="48" y="205" width="69" height="30">
- </bounds>
+ <bounds x="48" y="205" width="69" height="30"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="50" y="207" width="65" height="26">
- </bounds>
+ <bounds x="50" y="207" width="65" height="26"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="226" y="164" width="62" height="32">
- </bounds>
+ <bounds x="226" y="164" width="62" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="228" y="166" width="58" height="28">
- </bounds>
+ <bounds x="228" y="166" width="58" height="28"/>
</element>
<element name="lamp106" ref="lamp_106_1_border" state="0">
- <bounds x="93" y="290" width="62" height="32">
- </bounds>
+ <bounds x="93" y="290" width="62" height="32"/>
</element>
<element name="lamp106" ref="lamp_106_1" state="0">
- <bounds x="95" y="292" width="58" height="28">
- </bounds>
+ <bounds x="95" y="292" width="58" height="28"/>
</element>
<element name="lamp105" ref="lamp_105_1_border" state="0">
- <bounds x="157" y="290" width="69" height="30">
- </bounds>
+ <bounds x="157" y="290" width="69" height="30"/>
</element>
<element name="lamp105" ref="lamp_105_1" state="0">
- <bounds x="159" y="292" width="65" height="26">
- </bounds>
+ <bounds x="159" y="292" width="65" height="26"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="382" y="286" width="69" height="30">
- </bounds>
+ <bounds x="382" y="286" width="69" height="30"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="384" y="288" width="65" height="26">
- </bounds>
+ <bounds x="384" y="288" width="65" height="26"/>
</element>
<element name="lamp117" ref="lamp_117_1_border" state="0">
- <bounds x="455" y="291" width="69" height="30">
- </bounds>
+ <bounds x="455" y="291" width="69" height="30"/>
</element>
<element name="lamp117" ref="lamp_117_1" state="0">
- <bounds x="457" y="293" width="65" height="26">
- </bounds>
+ <bounds x="457" y="293" width="65" height="26"/>
</element>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="527" y="298" width="73" height="32">
- </bounds>
+ <bounds x="527" y="298" width="73" height="32"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="529" y="300" width="69" height="28">
- </bounds>
+ <bounds x="529" y="300" width="69" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="675" y="345" width="62" height="32">
- </bounds>
+ <bounds x="675" y="345" width="62" height="32"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="677" y="347" width="58" height="28">
- </bounds>
+ <bounds x="677" y="347" width="58" height="28"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="228" y="288" width="69" height="30">
- </bounds>
+ <bounds x="228" y="288" width="69" height="30"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="230" y="290" width="65" height="26">
- </bounds>
+ <bounds x="230" y="290" width="65" height="26"/>
</element>
<element name="lamp111" ref="lamp_111_1_border" state="0">
- <bounds x="157" y="146" width="69" height="30">
- </bounds>
+ <bounds x="157" y="146" width="69" height="30"/>
</element>
<element name="lamp111" ref="lamp_111_1" state="0">
- <bounds x="159" y="148" width="65" height="26">
- </bounds>
+ <bounds x="159" y="148" width="65" height="26"/>
</element>
<element name="lamp63" ref="lamp_63_1_border" state="0">
- <bounds x="918" y="17" width="77" height="27">
- </bounds>
+ <bounds x="918" y="17" width="77" height="27"/>
</element>
<element name="lamp63" ref="lamp_63_1" state="0">
- <bounds x="920" y="19" width="73" height="23">
- </bounds>
+ <bounds x="920" y="19" width="73" height="23"/>
</element>
<element name="lamp61" ref="lamp_61_1_border" state="0">
- <bounds x="918" y="46" width="77" height="27">
- </bounds>
+ <bounds x="918" y="46" width="77" height="27"/>
</element>
<element name="lamp61" ref="lamp_61_1" state="0">
- <bounds x="920" y="48" width="73" height="23">
- </bounds>
+ <bounds x="920" y="48" width="73" height="23"/>
</element>
<element name="lamp62" ref="lamp_62_1_border" state="0">
- <bounds x="839" y="46" width="77" height="27">
- </bounds>
+ <bounds x="839" y="46" width="77" height="27"/>
</element>
<element name="lamp62" ref="lamp_62_1" state="0">
- <bounds x="841" y="48" width="73" height="23">
- </bounds>
+ <bounds x="841" y="48" width="73" height="23"/>
</element>
<element name="lamp60" ref="lamp_60_1_border" state="0">
- <bounds x="839" y="17" width="77" height="27">
- </bounds>
+ <bounds x="839" y="17" width="77" height="27"/>
</element>
<element name="lamp60" ref="lamp_60_1" state="0">
- <bounds x="841" y="19" width="73" height="23">
- </bounds>
+ <bounds x="841" y="19" width="73" height="23"/>
</element>
<element name="lamp46" ref="lamp_46_1_border" state="0">
- <bounds x="79" y="550" width="92" height="37">
- </bounds>
+ <bounds x="79" y="550" width="92" height="37"/>
</element>
<element name="lamp46" ref="lamp_46_1" state="0">
- <bounds x="81" y="552" width="88" height="33">
- </bounds>
+ <bounds x="81" y="552" width="88" height="33"/>
</element>
<element name="lamp30" ref="lamp_30_1_border" state="0">
- <bounds x="79" y="476" width="92" height="37">
- </bounds>
+ <bounds x="79" y="476" width="92" height="37"/>
</element>
<element name="lamp30" ref="lamp_30_1" state="0">
- <bounds x="81" y="478" width="88" height="33">
- </bounds>
+ <bounds x="81" y="478" width="88" height="33"/>
</element>
<element name="lamp38" ref="lamp_38_1_border" state="0">
- <bounds x="79" y="513" width="92" height="37">
- </bounds>
+ <bounds x="79" y="513" width="92" height="37"/>
</element>
<element name="lamp38" ref="lamp_38_1" state="0">
- <bounds x="81" y="515" width="88" height="33">
- </bounds>
+ <bounds x="81" y="515" width="88" height="33"/>
</element>
<element name="lamp22" ref="lamp_22_1_border" state="0">
- <bounds x="79" y="439" width="92" height="37">
- </bounds>
+ <bounds x="79" y="439" width="92" height="37"/>
</element>
<element name="lamp22" ref="lamp_22_1" state="0">
- <bounds x="81" y="441" width="88" height="33">
- </bounds>
+ <bounds x="81" y="441" width="88" height="33"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
- <bounds x="84" y="353" width="117" height="47">
- </bounds>
+ <bounds x="84" y="353" width="117" height="47"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
- <bounds x="86" y="355" width="113" height="43">
- </bounds>
+ <bounds x="86" y="355" width="113" height="43"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
- <bounds x="79" y="402" width="92" height="37">
- </bounds>
+ <bounds x="79" y="402" width="92" height="37"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
- <bounds x="81" y="404" width="88" height="33">
- </bounds>
+ <bounds x="81" y="404" width="88" height="33"/>
</element>
<element name="lamp47" ref="lamp_47_1_border" state="0">
- <bounds x="173" y="550" width="35" height="35">
- </bounds>
+ <bounds x="173" y="550" width="35" height="35"/>
</element>
<element name="lamp47" ref="lamp_47_1" state="0">
- <bounds x="175" y="552" width="31" height="31">
- </bounds>
+ <bounds x="175" y="552" width="31" height="31"/>
</element>
<element name="lamp39" ref="lamp_39_1_border" state="0">
- <bounds x="173" y="513" width="35" height="35">
- </bounds>
+ <bounds x="173" y="513" width="35" height="35"/>
</element>
<element name="lamp39" ref="lamp_39_1" state="0">
- <bounds x="175" y="515" width="31" height="31">
- </bounds>
+ <bounds x="175" y="515" width="31" height="31"/>
</element>
<element name="lamp31" ref="lamp_31_1_border" state="0">
- <bounds x="173" y="476" width="35" height="35">
- </bounds>
+ <bounds x="173" y="476" width="35" height="35"/>
</element>
<element name="lamp31" ref="lamp_31_1" state="0">
- <bounds x="175" y="478" width="31" height="31">
- </bounds>
+ <bounds x="175" y="478" width="31" height="31"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
- <bounds x="173" y="439" width="35" height="35">
- </bounds>
+ <bounds x="173" y="439" width="35" height="35"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
- <bounds x="175" y="441" width="31" height="31">
- </bounds>
+ <bounds x="175" y="441" width="31" height="31"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
- <bounds x="173" y="402" width="35" height="35">
- </bounds>
+ <bounds x="173" y="402" width="35" height="35"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
- <bounds x="175" y="404" width="31" height="31">
- </bounds>
+ <bounds x="175" y="404" width="31" height="31"/>
</element>
<element name="lamp42" ref="lamp_42_1_border" state="0">
- <bounds x="656" y="553" width="146" height="19">
- </bounds>
+ <bounds x="656" y="553" width="146" height="19"/>
</element>
<element name="lamp42" ref="lamp_42_1" state="0">
- <bounds x="658" y="555" width="142" height="15">
- </bounds>
+ <bounds x="658" y="555" width="142" height="15"/>
</element>
<element name="lamp33" ref="lamp_33_1_border" state="0">
- <bounds x="258" y="114" width="42" height="32">
- </bounds>
+ <bounds x="258" y="114" width="42" height="32"/>
</element>
<element name="lamp33" ref="lamp_33_1" state="0">
- <bounds x="260" y="116" width="38" height="28">
- </bounds>
+ <bounds x="260" y="116" width="38" height="28"/>
</element>
<element name="lamp34" ref="lamp_34_1_border" state="0">
- <bounds x="400" y="112" width="42" height="32">
- </bounds>
+ <bounds x="400" y="112" width="42" height="32"/>
</element>
<element name="lamp34" ref="lamp_34_1" state="0">
- <bounds x="402" y="114" width="38" height="28">
- </bounds>
+ <bounds x="402" y="114" width="38" height="28"/>
</element>
<element name="lamp40" ref="colour_button_134_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="673" y="594" width="97" height="47">
- </bounds>
+ <bounds x="673" y="594" width="97" height="47"/>
</element>
<element name="lamp40" ref="colour_button_134" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="675" y="596" width="93" height="43">
- </bounds>
+ <bounds x="675" y="596" width="93" height="43"/>
</element>
<element name="lamp41" ref="colour_button_135_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="780" y="594" width="97" height="47">
- </bounds>
+ <bounds x="780" y="594" width="97" height="47"/>
</element>
<element name="lamp41" ref="colour_button_135" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="782" y="596" width="93" height="43">
- </bounds>
+ <bounds x="782" y="596" width="93" height="43"/>
</element>
<element name="lamp-1" ref="colour_button_136_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="835" y="534" width="44" height="44">
- </bounds>
+ <bounds x="835" y="534" width="44" height="44"/>
</element>
<element name="lamp-1" ref="colour_button_136" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="837" y="536" width="40" height="40">
- </bounds>
+ <bounds x="837" y="536" width="40" height="40"/>
</element>
<element name="lamp34" ref="colour_button_137_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="583" y="606" width="62" height="37">
- </bounds>
+ <bounds x="583" y="606" width="62" height="37"/>
</element>
<element name="lamp34" ref="colour_button_137" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="585" y="608" width="58" height="33">
- </bounds>
+ <bounds x="585" y="608" width="58" height="33"/>
</element>
<element name="lamp33" ref="colour_button_138_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="583" y="569" width="62" height="37">
- </bounds>
+ <bounds x="583" y="569" width="62" height="37"/>
</element>
<element name="lamp33" ref="colour_button_138" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="585" y="571" width="58" height="33">
- </bounds>
+ <bounds x="585" y="571" width="58" height="33"/>
</element>
<element name="lamp32" ref="colour_button_139_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="471" y="594" width="97" height="47">
- </bounds>
+ <bounds x="471" y="594" width="97" height="47"/>
</element>
<element name="lamp32" ref="colour_button_139" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="473" y="596" width="93" height="43">
- </bounds>
+ <bounds x="473" y="596" width="93" height="43"/>
</element>
<element name="lamp26" ref="colour_button_140_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="357" y="594" width="97" height="47">
- </bounds>
+ <bounds x="357" y="594" width="97" height="47"/>
</element>
<element name="lamp26" ref="colour_button_140" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="359" y="596" width="93" height="43">
- </bounds>
+ <bounds x="359" y="596" width="93" height="43"/>
</element>
<element name="lamp25" ref="colour_button_141_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="244" y="594" width="97" height="47">
- </bounds>
+ <bounds x="244" y="594" width="97" height="47"/>
</element>
<element name="lamp25" ref="colour_button_141" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="246" y="596" width="93" height="43">
- </bounds>
+ <bounds x="246" y="596" width="93" height="43"/>
</element>
<element name="lamp24" ref="colour_button_142_border" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="95" y="594" width="97" height="47">
- </bounds>
+ <bounds x="95" y="594" width="97" height="47"/>
</element>
<element name="lamp24" ref="colour_button_142" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="97" y="596" width="93" height="43">
- </bounds>
+ <bounds x="97" y="596" width="93" height="43"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="776" y="30" width="33" height="38">
- </bounds>
+ <bounds x="776" y="30" width="33" height="38"/>
</element>
<element name="digit4" ref="led_digit_red">
- <bounds x="776" y="30" width="33" height="38">
- </bounds>
+ <bounds x="776" y="30" width="33" height="38"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="776" y="30" width="33" height="38">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="776" y="30" width="33" height="38"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="743" y="30" width="33" height="38">
- </bounds>
+ <bounds x="743" y="30" width="33" height="38"/>
</element>
<element name="digit3" ref="led_digit_red">
- <bounds x="743" y="30" width="33" height="38">
- </bounds>
+ <bounds x="743" y="30" width="33" height="38"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="743" y="30" width="33" height="38">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="743" y="30" width="33" height="38"/>
+ <color alpha="0.1"/>
</element>
<element ref="vfd0_background">
- <bounds x="268" y="362" width="272" height="30">
- </bounds>
+ <bounds x="268" y="362" width="272" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
- <bounds x="268" y="362" width="17" height="30">
- </bounds>
+ <bounds x="268" y="362" width="17" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
- <bounds x="285" y="362" width="17" height="30">
- </bounds>
+ <bounds x="285" y="362" width="17" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
- <bounds x="302" y="362" width="17" height="30">
- </bounds>
+ <bounds x="302" y="362" width="17" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
- <bounds x="319" y="362" width="17" height="30">
- </bounds>
+ <bounds x="319" y="362" width="17" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
- <bounds x="336" y="362" width="17" height="30">
- </bounds>
+ <bounds x="336" y="362" width="17" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
- <bounds x="353" y="362" width="17" height="30">
- </bounds>
+ <bounds x="353" y="362" width="17" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
- <bounds x="370" y="362" width="17" height="30">
- </bounds>
+ <bounds x="370" y="362" width="17" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
- <bounds x="387" y="362" width="17" height="30">
- </bounds>
+ <bounds x="387" y="362" width="17" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
- <bounds x="404" y="362" width="17" height="30">
- </bounds>
+ <bounds x="404" y="362" width="17" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
- <bounds x="421" y="362" width="17" height="30">
- </bounds>
+ <bounds x="421" y="362" width="17" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
- <bounds x="438" y="362" width="17" height="30">
- </bounds>
+ <bounds x="438" y="362" width="17" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
- <bounds x="455" y="362" width="17" height="30">
- </bounds>
+ <bounds x="455" y="362" width="17" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
- <bounds x="472" y="362" width="17" height="30">
- </bounds>
+ <bounds x="472" y="362" width="17" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
- <bounds x="489" y="362" width="17" height="30">
- </bounds>
+ <bounds x="489" y="362" width="17" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
- <bounds x="506" y="362" width="17" height="30">
- </bounds>
+ <bounds x="506" y="362" width="17" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
- <bounds x="523" y="362" width="17" height="30">
- </bounds>
+ <bounds x="523" y="362" width="17" height="30"/>
</element>
<element name="label109" ref="label_109">
- <bounds x="876" y="75" width="83" height="13">
- </bounds>
+ <bounds x="876" y="75" width="83" height="13"/>
</element>
<element name="label110" ref="label_110">
- <bounds x="758" y="71" width="37" height="13">
- </bounds>
+ <bounds x="758" y="71" width="37" height="13"/>
</element>
<element name="label113" ref="label_113">
- <bounds x="7" y="642" width="36" height="13">
- </bounds>
+ <bounds x="7" y="642" width="36" height="13"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4apachg.lay b/src/mame/layout/m4apachg.lay
index 6d25d3525ba..3215ea0e15c 100644
--- a/src/mame/layout/m4apachg.lay
+++ b/src/mame/layout/m4apachg.lay
@@ -8,4101 +8,3109 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_233_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_233_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Mix 'n'">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Match">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_232_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_232_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Spin A">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_209_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_209_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_210_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_210_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Climb">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_211_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_211_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Adder">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_212_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_212_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Steppe">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_213_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_213_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Super">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Streak">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_234_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_234_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Attack">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_235_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_235_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Follow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Me">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_236_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_236_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Fruit">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Link">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_237_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_237_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Flash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_240_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_240_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_241_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_241_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_242_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_242_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_243_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_243_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2.40">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_244_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_244_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_245_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_245_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_217_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_217_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_218_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_218_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_219_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_219_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_220_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_220_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;15">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_221_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_221_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;25">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_229_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_229_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="99">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_253_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_253_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Blas">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_252_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_252_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudg">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_251_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_251_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Blas">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_250_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_250_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudg">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_249_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_249_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Blas">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_248_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_248_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudg">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_228_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_228_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Blas">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_227_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_227_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_226_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_226_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Blas">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_225_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_225_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudg">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_127_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_127_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_124_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_124_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Bonus">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Arrow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_126_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_126_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="??">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_118_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_118_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Bonus">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudges">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_117_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_117_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_116_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_116_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_115_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_115_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="??">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="+2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Featu">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_113_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_113_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_119_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_119_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_107_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_107_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Activate">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_106_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_106_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Featu">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_105_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_105_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Extra">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Arrow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_104_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_104_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_122_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_122_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Featu">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_121_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_121_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="+2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Cash">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_108_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_108_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_109_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_109_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="+1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_120_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_120_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="??">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_123_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_123_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Re-">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Shuffl">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="Activate">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_125_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_125_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="+2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Wins">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_111_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_111_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Extra">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Life">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_97_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_97_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Take">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Totem">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_99_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_99_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Skill">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Continue">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_101_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_101_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Jackpot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Re -">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Shuffle">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Add">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Arrow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_100_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_100_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_110_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_110_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="Even">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Shot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="lamp_83_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_83_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="a">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_85_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_85_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="p">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="h">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_86_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_86_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="e">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_87_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_87_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="c">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="a">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_51_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_51_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="LOSE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_102_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_102_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="Arrow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_103_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_103_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="Arrow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_88_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_88_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="Arrow">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_81_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_81_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="MISS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_38_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_38_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;25">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_45_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_45_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;15">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_44_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_44_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_43_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_43_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_55_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_55_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_54_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_54_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_53_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_53_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_52_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="lamp_52_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_120_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_120">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="EXCHANGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_121_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_121">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string=" START">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_122_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_122">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="CANCEL">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="COLLECT">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_123_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.25">
- </color>
+ <color red="0.50" green="0.00" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.06">
- </color>
+ <color red="0.12" green="0.00" blue="0.06"/>
</rect>
</element>
<element name="colour_button_123">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.50">
- </color>
+ <color red="1.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.13">
- </color>
+ <color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="RESPIN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_124_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_124">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_125_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_125">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD LO">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_126_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_126">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD HI">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="NUDGE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_127_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.12">
- </color>
+ <color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_127">
<rect state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.25">
- </color>
+ <color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_129_border">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.00">
- </color>
+ <color red="0.00" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_129">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.00">
- </color>
+ <color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="TAKE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="WIN">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_130_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_130">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="TAKE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="CASH">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_131_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_131">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="TAKE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string=" FEATUR">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_132_border">
<rect state="1">
- <color red="0.25" green="0.25" blue="0.50">
- </color>
+ <color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.06" blue="0.12">
- </color>
+ <color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="colour_button_132">
<rect state="1">
- <color red="0.50" green="0.50" blue="1.00">
- </color>
+ <color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.13" blue="0.25">
- </color>
+ <color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="TAKE">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="TARGET">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Jackpot,Cherry,DoubleBar(2),Pear,Melon,Cherry,TripleBar(?),Cherry,SingleBar,Grape,Pear,TripleBar(3),Cherry,SingleBar,Melon(1),Grape">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Jackpot,Cherry,DoubleBar,Pear(3),Melon,Grape,Pear(1),Cherry,SingleBar,Grape,Pear,DoubleBar(2),Cherry,TripleBar,Melon,Grape(?)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Jackpot,Cherry(1),DoubleBar,Pear,SingleBar,Grape(3),TripleBar,Cherry,SingleBar,Melon,Pear(?),DoubleBar,Grape,SingleBar,Melon(2),Grape">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel3" defstate="0">
<reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="1,2,3,4,5,6,7,8,9,10,11,12">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="vfd0">
<led16segsc>
- <color red="0.0" green="1.0" blue="1.0">
- </color>
+ <color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_4">
<text string="GOLD">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_5">
<text string="Medicine">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Man">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_75">
<text string="Any 3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="Numbers">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.28" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="Starts">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="Feature !">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.72" width="0.90" height="0.22">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
</element>
<element name="label_76">
<text string="1 - 12">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_77">
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Line">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_78">
<text string="Win">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Line">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="label_100">
<text string="Barcodes">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="792" height="646">
- </bounds>
+ <bounds x="0" y="0" width="792" height="646"/>
</element>
<element ref="reel_background">
- <bounds x="274" y="414" width="80" height="190">
- </bounds>
+ <bounds x="274" y="414" width="80" height="190"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="274.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="274.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="277.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="277.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="280.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="280.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="284.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="284.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="287.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="287.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="290.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="290.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="274.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="274.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="277.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="277.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="280.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="280.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="284.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="284.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="287.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="287.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="290.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="290.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="274.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="274.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="277.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="277.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="280.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="280.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="284.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="284.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="287.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="287.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="290.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="290.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="274" y="414" width="80" height="190">
- </bounds>
+ <bounds x="274" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="356" y="414" width="80" height="190">
- </bounds>
+ <bounds x="356" y="414" width="80" height="190"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="356.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="356.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="359.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="359.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="362.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="362.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="366.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="366.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="369.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="369.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="372.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="372.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="356.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="356.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="359.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="359.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="362.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="362.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="366.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="366.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="369.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="369.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="372.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="372.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="356.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="356.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="359.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="359.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="362.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="362.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="366.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="366.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="369.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="369.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="372.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="372.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="356" y="414" width="80" height="190">
- </bounds>
+ <bounds x="356" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="438" y="414" width="80" height="190">
- </bounds>
+ <bounds x="438" y="414" width="80" height="190"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="438.0000" y="414.0000" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="438.0000" y="414.0000" width="80.0000" height="63.3333"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="441.3333" y="416.6389" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="441.3333" y="416.6389" width="73.3333" height="58.0556"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="444.6667" y="419.2778" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="444.6667" y="419.2778" width="66.6667" height="52.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="448.0000" y="421.9167" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="448.0000" y="421.9167" width="60.0000" height="47.5000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="451.3333" y="424.5555" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="451.3333" y="424.5555" width="53.3333" height="42.2222"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="454.6667" y="427.1945" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="454.6667" y="427.1945" width="46.6667" height="36.9444"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="438.0000" y="477.3333" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="438.0000" y="477.3333" width="80.0000" height="63.3333"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="441.3333" y="479.9722" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="441.3333" y="479.9722" width="73.3333" height="58.0556"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="444.6667" y="482.6111" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="444.6667" y="482.6111" width="66.6667" height="52.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="448.0000" y="485.2500" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="448.0000" y="485.2500" width="60.0000" height="47.5000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="451.3333" y="487.8889" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="451.3333" y="487.8889" width="53.3333" height="42.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="454.6667" y="490.5278" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="454.6667" y="490.5278" width="46.6667" height="36.9444"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="438.0000" y="540.6667" width="80.0000" height="63.3333">
- </bounds>
+ <bounds x="438.0000" y="540.6667" width="80.0000" height="63.3333"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="441.3333" y="543.3056" width="73.3333" height="58.0556">
- </bounds>
+ <bounds x="441.3333" y="543.3056" width="73.3333" height="58.0556"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="444.6667" y="545.9445" width="66.6667" height="52.7778">
- </bounds>
+ <bounds x="444.6667" y="545.9445" width="66.6667" height="52.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="448.0000" y="548.5834" width="60.0000" height="47.5000">
- </bounds>
+ <bounds x="448.0000" y="548.5834" width="60.0000" height="47.5000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="451.3333" y="551.2222" width="53.3333" height="42.2222">
- </bounds>
+ <bounds x="451.3333" y="551.2222" width="53.3333" height="42.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="454.6667" y="553.8611" width="46.6667" height="36.9444">
- </bounds>
+ <bounds x="454.6667" y="553.8611" width="46.6667" height="36.9444"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="438" y="414" width="80" height="190">
- </bounds>
+ <bounds x="438" y="414" width="80" height="190"/>
</element>
<element ref="reel_background">
- <bounds x="367" y="304" width="70" height="70">
- </bounds>
+ <bounds x="367" y="304" width="70" height="70"/>
</element>
<element name="sreel4" ref="reel3" state="0">
- <bounds x="367" y="304" width="70" height="70">
- </bounds>
+ <bounds x="367" y="304" width="70" height="70"/>
</element>
<element name="lamp233" ref="lamp_233_1_border" state="0">
- <bounds x="168" y="292" width="62" height="32">
- </bounds>
+ <bounds x="168" y="292" width="62" height="32"/>
</element>
<element name="lamp233" ref="lamp_233_1" state="0">
- <bounds x="170" y="294" width="58" height="28">
- </bounds>
+ <bounds x="170" y="294" width="58" height="28"/>
</element>
<element name="lamp232" ref="lamp_232_1_border" state="0">
- <bounds x="168" y="324" width="62" height="32">
- </bounds>
+ <bounds x="168" y="324" width="62" height="32"/>
</element>
<element name="lamp232" ref="lamp_232_1" state="0">
- <bounds x="170" y="326" width="58" height="28">
- </bounds>
+ <bounds x="170" y="326" width="58" height="28"/>
</element>
<element name="lamp209" ref="lamp_209_1_border" state="0">
- <bounds x="168" y="132" width="62" height="32">
- </bounds>
+ <bounds x="168" y="132" width="62" height="32"/>
</element>
<element name="lamp209" ref="lamp_209_1" state="0">
- <bounds x="170" y="134" width="58" height="28">
- </bounds>
+ <bounds x="170" y="134" width="58" height="28"/>
</element>
<element name="lamp210" ref="lamp_210_1_border" state="0">
- <bounds x="168" y="100" width="62" height="32">
- </bounds>
+ <bounds x="168" y="100" width="62" height="32"/>
</element>
<element name="lamp210" ref="lamp_210_1" state="0">
- <bounds x="170" y="102" width="58" height="28">
- </bounds>
+ <bounds x="170" y="102" width="58" height="28"/>
</element>
<element name="lamp211" ref="lamp_211_1_border" state="0">
- <bounds x="168" y="68" width="62" height="32">
- </bounds>
+ <bounds x="168" y="68" width="62" height="32"/>
</element>
<element name="lamp211" ref="lamp_211_1" state="0">
- <bounds x="170" y="70" width="58" height="28">
- </bounds>
+ <bounds x="170" y="70" width="58" height="28"/>
</element>
<element name="lamp212" ref="lamp_212_1_border" state="0">
- <bounds x="168" y="36" width="62" height="32">
- </bounds>
+ <bounds x="168" y="36" width="62" height="32"/>
</element>
<element name="lamp212" ref="lamp_212_1" state="0">
- <bounds x="170" y="38" width="58" height="28">
- </bounds>
+ <bounds x="170" y="38" width="58" height="28"/>
</element>
<element name="lamp213" ref="lamp_213_1_border" state="0">
- <bounds x="168" y="4" width="62" height="32">
- </bounds>
+ <bounds x="168" y="4" width="62" height="32"/>
</element>
<element name="lamp213" ref="lamp_213_1" state="0">
- <bounds x="170" y="6" width="58" height="28">
- </bounds>
+ <bounds x="170" y="6" width="58" height="28"/>
</element>
<element name="lamp234" ref="lamp_234_1_border" state="0">
- <bounds x="168" y="260" width="62" height="32">
- </bounds>
+ <bounds x="168" y="260" width="62" height="32"/>
</element>
<element name="lamp234" ref="lamp_234_1" state="0">
- <bounds x="170" y="262" width="58" height="28">
- </bounds>
+ <bounds x="170" y="262" width="58" height="28"/>
</element>
<element name="lamp235" ref="lamp_235_1_border" state="0">
- <bounds x="168" y="228" width="62" height="32">
- </bounds>
+ <bounds x="168" y="228" width="62" height="32"/>
</element>
<element name="lamp235" ref="lamp_235_1" state="0">
- <bounds x="170" y="230" width="58" height="28">
- </bounds>
+ <bounds x="170" y="230" width="58" height="28"/>
</element>
<element name="lamp236" ref="lamp_236_1_border" state="0">
- <bounds x="168" y="196" width="62" height="32">
- </bounds>
+ <bounds x="168" y="196" width="62" height="32"/>
</element>
<element name="lamp236" ref="lamp_236_1" state="0">
- <bounds x="170" y="198" width="58" height="28">
- </bounds>
+ <bounds x="170" y="198" width="58" height="28"/>
</element>
<element name="lamp237" ref="lamp_237_1_border" state="0">
- <bounds x="168" y="164" width="62" height="32">
- </bounds>
+ <bounds x="168" y="164" width="62" height="32"/>
</element>
<element name="lamp237" ref="lamp_237_1" state="0">
- <bounds x="170" y="166" width="58" height="28">
- </bounds>
+ <bounds x="170" y="166" width="58" height="28"/>
</element>
<element name="lamp240" ref="lamp_240_1_border" state="0">
- <bounds x="97" y="324" width="62" height="32">
- </bounds>
+ <bounds x="97" y="324" width="62" height="32"/>
</element>
<element name="lamp240" ref="lamp_240_1" state="0">
- <bounds x="99" y="326" width="58" height="28">
- </bounds>
+ <bounds x="99" y="326" width="58" height="28"/>
</element>
<element name="lamp241" ref="lamp_241_1_border" state="0">
- <bounds x="97" y="292" width="62" height="32">
- </bounds>
+ <bounds x="97" y="292" width="62" height="32"/>
</element>
<element name="lamp241" ref="lamp_241_1" state="0">
- <bounds x="99" y="294" width="58" height="28">
- </bounds>
+ <bounds x="99" y="294" width="58" height="28"/>
</element>
<element name="lamp242" ref="lamp_242_1_border" state="0">
- <bounds x="97" y="260" width="62" height="32">
- </bounds>
+ <bounds x="97" y="260" width="62" height="32"/>
</element>
<element name="lamp242" ref="lamp_242_1" state="0">
- <bounds x="99" y="262" width="58" height="28">
- </bounds>
+ <bounds x="99" y="262" width="58" height="28"/>
</element>
<element name="lamp243" ref="lamp_243_1_border" state="0">
- <bounds x="97" y="228" width="62" height="32">
- </bounds>
+ <bounds x="97" y="228" width="62" height="32"/>
</element>
<element name="lamp243" ref="lamp_243_1" state="0">
- <bounds x="99" y="230" width="58" height="28">
- </bounds>
+ <bounds x="99" y="230" width="58" height="28"/>
</element>
<element name="lamp244" ref="lamp_244_1_border" state="0">
- <bounds x="97" y="196" width="62" height="32">
- </bounds>
+ <bounds x="97" y="196" width="62" height="32"/>
</element>
<element name="lamp244" ref="lamp_244_1" state="0">
- <bounds x="99" y="198" width="58" height="28">
- </bounds>
+ <bounds x="99" y="198" width="58" height="28"/>
</element>
<element name="lamp245" ref="lamp_245_1_border" state="0">
- <bounds x="97" y="164" width="62" height="32">
- </bounds>
+ <bounds x="97" y="164" width="62" height="32"/>
</element>
<element name="lamp245" ref="lamp_245_1" state="0">
- <bounds x="99" y="166" width="58" height="28">
- </bounds>
+ <bounds x="99" y="166" width="58" height="28"/>
</element>
<element name="lamp217" ref="lamp_217_1_border" state="0">
- <bounds x="97" y="132" width="62" height="32">
- </bounds>
+ <bounds x="97" y="132" width="62" height="32"/>
</element>
<element name="lamp217" ref="lamp_217_1" state="0">
- <bounds x="99" y="134" width="58" height="28">
- </bounds>
+ <bounds x="99" y="134" width="58" height="28"/>
</element>
<element name="lamp218" ref="lamp_218_1_border" state="0">
- <bounds x="97" y="100" width="62" height="32">
- </bounds>
+ <bounds x="97" y="100" width="62" height="32"/>
</element>
<element name="lamp218" ref="lamp_218_1" state="0">
- <bounds x="99" y="102" width="58" height="28">
- </bounds>
+ <bounds x="99" y="102" width="58" height="28"/>
</element>
<element name="lamp219" ref="lamp_219_1_border" state="0">
- <bounds x="97" y="68" width="62" height="32">
- </bounds>
+ <bounds x="97" y="68" width="62" height="32"/>
</element>
<element name="lamp219" ref="lamp_219_1" state="0">
- <bounds x="99" y="70" width="58" height="28">
- </bounds>
+ <bounds x="99" y="70" width="58" height="28"/>
</element>
<element name="lamp220" ref="lamp_220_1_border" state="0">
- <bounds x="97" y="36" width="62" height="32">
- </bounds>
+ <bounds x="97" y="36" width="62" height="32"/>
</element>
<element name="lamp220" ref="lamp_220_1" state="0">
- <bounds x="99" y="38" width="58" height="28">
- </bounds>
+ <bounds x="99" y="38" width="58" height="28"/>
</element>
<element name="lamp221" ref="lamp_221_1_border" state="0">
- <bounds x="97" y="4" width="62" height="32">
- </bounds>
+ <bounds x="97" y="4" width="62" height="32"/>
</element>
<element name="lamp221" ref="lamp_221_1" state="0">
- <bounds x="99" y="6" width="58" height="28">
- </bounds>
+ <bounds x="99" y="6" width="58" height="28"/>
</element>
<element name="lamp229" ref="lamp_229_1_border" state="0">
- <bounds x="24" y="4" width="62" height="32">
- </bounds>
+ <bounds x="24" y="4" width="62" height="32"/>
</element>
<element name="lamp229" ref="lamp_229_1" state="0">
- <bounds x="26" y="6" width="58" height="28">
- </bounds>
+ <bounds x="26" y="6" width="58" height="28"/>
</element>
<element name="lamp253" ref="lamp_253_1_border" state="0">
- <bounds x="24" y="164" width="62" height="32">
- </bounds>
+ <bounds x="24" y="164" width="62" height="32"/>
</element>
<element name="lamp253" ref="lamp_253_1" state="0">
- <bounds x="26" y="166" width="58" height="28">
- </bounds>
+ <bounds x="26" y="166" width="58" height="28"/>
</element>
<element name="lamp252" ref="lamp_252_1_border" state="0">
- <bounds x="24" y="196" width="62" height="32">
- </bounds>
+ <bounds x="24" y="196" width="62" height="32"/>
</element>
<element name="lamp252" ref="lamp_252_1" state="0">
- <bounds x="26" y="198" width="58" height="28">
- </bounds>
+ <bounds x="26" y="198" width="58" height="28"/>
</element>
<element name="lamp251" ref="lamp_251_1_border" state="0">
- <bounds x="24" y="228" width="62" height="32">
- </bounds>
+ <bounds x="24" y="228" width="62" height="32"/>
</element>
<element name="lamp251" ref="lamp_251_1" state="0">
- <bounds x="26" y="230" width="58" height="28">
- </bounds>
+ <bounds x="26" y="230" width="58" height="28"/>
</element>
<element name="lamp250" ref="lamp_250_1_border" state="0">
- <bounds x="24" y="260" width="62" height="32">
- </bounds>
+ <bounds x="24" y="260" width="62" height="32"/>
</element>
<element name="lamp250" ref="lamp_250_1" state="0">
- <bounds x="26" y="262" width="58" height="28">
- </bounds>
+ <bounds x="26" y="262" width="58" height="28"/>
</element>
<element name="lamp249" ref="lamp_249_1_border" state="0">
- <bounds x="24" y="292" width="62" height="32">
- </bounds>
+ <bounds x="24" y="292" width="62" height="32"/>
</element>
<element name="lamp249" ref="lamp_249_1" state="0">
- <bounds x="26" y="294" width="58" height="28">
- </bounds>
+ <bounds x="26" y="294" width="58" height="28"/>
</element>
<element name="lamp248" ref="lamp_248_1_border" state="0">
- <bounds x="24" y="324" width="62" height="32">
- </bounds>
+ <bounds x="24" y="324" width="62" height="32"/>
</element>
<element name="lamp248" ref="lamp_248_1" state="0">
- <bounds x="26" y="326" width="58" height="28">
- </bounds>
+ <bounds x="26" y="326" width="58" height="28"/>
</element>
<element name="lamp228" ref="lamp_228_1_border" state="0">
- <bounds x="24" y="36" width="62" height="32">
- </bounds>
+ <bounds x="24" y="36" width="62" height="32"/>
</element>
<element name="lamp228" ref="lamp_228_1" state="0">
- <bounds x="26" y="38" width="58" height="28">
- </bounds>
+ <bounds x="26" y="38" width="58" height="28"/>
</element>
<element name="lamp227" ref="lamp_227_1_border" state="0">
- <bounds x="24" y="68" width="62" height="32">
- </bounds>
+ <bounds x="24" y="68" width="62" height="32"/>
</element>
<element name="lamp227" ref="lamp_227_1" state="0">
- <bounds x="26" y="70" width="58" height="28">
- </bounds>
+ <bounds x="26" y="70" width="58" height="28"/>
</element>
<element name="lamp226" ref="lamp_226_1_border" state="0">
- <bounds x="24" y="100" width="62" height="32">
- </bounds>
+ <bounds x="24" y="100" width="62" height="32"/>
</element>
<element name="lamp226" ref="lamp_226_1" state="0">
- <bounds x="26" y="102" width="58" height="28">
- </bounds>
+ <bounds x="26" y="102" width="58" height="28"/>
</element>
<element name="lamp225" ref="lamp_225_1_border" state="0">
- <bounds x="24" y="132" width="62" height="32">
- </bounds>
+ <bounds x="24" y="132" width="62" height="32"/>
</element>
<element name="lamp225" ref="lamp_225_1" state="0">
- <bounds x="26" y="134" width="58" height="28">
- </bounds>
+ <bounds x="26" y="134" width="58" height="28"/>
</element>
<element name="lamp127" ref="lamp_127_1_border" state="0">
- <bounds x="431" y="269" width="62" height="32">
- </bounds>
+ <bounds x="431" y="269" width="62" height="32"/>
</element>
<element name="lamp127" ref="lamp_127_1" state="0">
- <bounds x="433" y="271" width="58" height="28">
- </bounds>
+ <bounds x="433" y="271" width="58" height="28"/>
</element>
<element name="lamp124" ref="lamp_124_1_border" state="0">
- <bounds x="245" y="269" width="62" height="32">
- </bounds>
+ <bounds x="245" y="269" width="62" height="32"/>
</element>
<element name="lamp124" ref="lamp_124_1" state="0">
- <bounds x="247" y="271" width="58" height="28">
- </bounds>
+ <bounds x="247" y="271" width="58" height="28"/>
</element>
<element name="lamp126" ref="lamp_126_1_border" state="0">
- <bounds x="369" y="269" width="62" height="32">
- </bounds>
+ <bounds x="369" y="269" width="62" height="32"/>
</element>
<element name="lamp126" ref="lamp_126_1" state="0">
- <bounds x="371" y="271" width="58" height="28">
- </bounds>
+ <bounds x="371" y="271" width="58" height="28"/>
</element>
<element name="lamp118" ref="lamp_118_1_border" state="0">
- <bounds x="493" y="77" width="62" height="32">
- </bounds>
+ <bounds x="493" y="77" width="62" height="32"/>
</element>
<element name="lamp118" ref="lamp_118_1" state="0">
- <bounds x="495" y="79" width="58" height="28">
- </bounds>
+ <bounds x="495" y="79" width="58" height="28"/>
</element>
<element name="lamp117" ref="lamp_117_1_border" state="0">
- <bounds x="493" y="109" width="62" height="32">
- </bounds>
+ <bounds x="493" y="109" width="62" height="32"/>
</element>
<element name="lamp117" ref="lamp_117_1" state="0">
- <bounds x="495" y="111" width="58" height="28">
- </bounds>
+ <bounds x="495" y="111" width="58" height="28"/>
</element>
<element name="lamp116" ref="lamp_116_1_border" state="0">
- <bounds x="493" y="141" width="62" height="32">
- </bounds>
+ <bounds x="493" y="141" width="62" height="32"/>
</element>
<element name="lamp116" ref="lamp_116_1" state="0">
- <bounds x="495" y="143" width="58" height="28">
- </bounds>
+ <bounds x="495" y="143" width="58" height="28"/>
</element>
<element name="lamp115" ref="lamp_115_1_border" state="0">
- <bounds x="493" y="173" width="62" height="32">
- </bounds>
+ <bounds x="493" y="173" width="62" height="32"/>
</element>
<element name="lamp115" ref="lamp_115_1" state="0">
- <bounds x="495" y="175" width="58" height="28">
- </bounds>
+ <bounds x="495" y="175" width="58" height="28"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="493" y="205" width="62" height="32">
- </bounds>
+ <bounds x="493" y="205" width="62" height="32"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="495" y="207" width="58" height="28">
- </bounds>
+ <bounds x="495" y="207" width="58" height="28"/>
</element>
<element name="lamp113" ref="lamp_113_1_border" state="0">
- <bounds x="493" y="237" width="62" height="32">
- </bounds>
+ <bounds x="493" y="237" width="62" height="32"/>
</element>
<element name="lamp113" ref="lamp_113_1" state="0">
- <bounds x="495" y="239" width="58" height="28">
- </bounds>
+ <bounds x="495" y="239" width="58" height="28"/>
</element>
<element name="lamp119" ref="lamp_119_1_border" state="0">
- <bounds x="493" y="45" width="62" height="32">
- </bounds>
+ <bounds x="493" y="45" width="62" height="32"/>
</element>
<element name="lamp119" ref="lamp_119_1" state="0">
- <bounds x="495" y="47" width="58" height="28">
- </bounds>
+ <bounds x="495" y="47" width="58" height="28"/>
</element>
<element name="lamp107" ref="lamp_107_1_border" state="0">
- <bounds x="245" y="45" width="62" height="32">
- </bounds>
+ <bounds x="245" y="45" width="62" height="32"/>
</element>
<element name="lamp107" ref="lamp_107_1" state="0">
- <bounds x="247" y="47" width="58" height="28">
- </bounds>
+ <bounds x="247" y="47" width="58" height="28"/>
</element>
<element name="lamp106" ref="lamp_106_1_border" state="0">
- <bounds x="307" y="45" width="62" height="32">
- </bounds>
+ <bounds x="307" y="45" width="62" height="32"/>
</element>
<element name="lamp106" ref="lamp_106_1" state="0">
- <bounds x="309" y="47" width="58" height="28">
- </bounds>
+ <bounds x="309" y="47" width="58" height="28"/>
</element>
<element name="lamp105" ref="lamp_105_1_border" state="0">
- <bounds x="369" y="45" width="62" height="32">
- </bounds>
+ <bounds x="369" y="45" width="62" height="32"/>
</element>
<element name="lamp105" ref="lamp_105_1" state="0">
- <bounds x="371" y="47" width="58" height="28">
- </bounds>
+ <bounds x="371" y="47" width="58" height="28"/>
</element>
<element name="lamp104" ref="lamp_104_1_border" state="0">
- <bounds x="431" y="45" width="62" height="32">
- </bounds>
+ <bounds x="431" y="45" width="62" height="32"/>
</element>
<element name="lamp104" ref="lamp_104_1" state="0">
- <bounds x="433" y="47" width="58" height="28">
- </bounds>
+ <bounds x="433" y="47" width="58" height="28"/>
</element>
<element name="lamp122" ref="lamp_122_1_border" state="0">
- <bounds x="245" y="205" width="62" height="32">
- </bounds>
+ <bounds x="245" y="205" width="62" height="32"/>
</element>
<element name="lamp122" ref="lamp_122_1" state="0">
- <bounds x="247" y="207" width="58" height="28">
- </bounds>
+ <bounds x="247" y="207" width="58" height="28"/>
</element>
<element name="lamp121" ref="lamp_121_1_border" state="0">
- <bounds x="245" y="173" width="62" height="32">
- </bounds>
+ <bounds x="245" y="173" width="62" height="32"/>
</element>
<element name="lamp121" ref="lamp_121_1" state="0">
- <bounds x="247" y="175" width="58" height="28">
- </bounds>
+ <bounds x="247" y="175" width="58" height="28"/>
</element>
<element name="lamp108" ref="lamp_108_1_border" state="0">
- <bounds x="245" y="77" width="62" height="32">
- </bounds>
+ <bounds x="245" y="77" width="62" height="32"/>
</element>
<element name="lamp108" ref="lamp_108_1" state="0">
- <bounds x="247" y="79" width="58" height="28">
- </bounds>
+ <bounds x="247" y="79" width="58" height="28"/>
</element>
<element name="lamp109" ref="lamp_109_1_border" state="0">
- <bounds x="245" y="109" width="62" height="32">
- </bounds>
+ <bounds x="245" y="109" width="62" height="32"/>
</element>
<element name="lamp109" ref="lamp_109_1" state="0">
- <bounds x="247" y="111" width="58" height="28">
- </bounds>
+ <bounds x="247" y="111" width="58" height="28"/>
</element>
<element name="lamp120" ref="lamp_120_1_border" state="0">
- <bounds x="245" y="141" width="62" height="32">
- </bounds>
+ <bounds x="245" y="141" width="62" height="32"/>
</element>
<element name="lamp120" ref="lamp_120_1" state="0">
- <bounds x="247" y="143" width="58" height="28">
- </bounds>
+ <bounds x="247" y="143" width="58" height="28"/>
</element>
<element name="lamp123" ref="lamp_123_1_border" state="0">
- <bounds x="245" y="237" width="62" height="32">
- </bounds>
+ <bounds x="245" y="237" width="62" height="32"/>
</element>
<element name="lamp123" ref="lamp_123_1" state="0">
- <bounds x="247" y="239" width="58" height="28">
- </bounds>
+ <bounds x="247" y="239" width="58" height="28"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="493" y="269" width="62" height="32">
- </bounds>
+ <bounds x="493" y="269" width="62" height="32"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="495" y="271" width="58" height="28">
- </bounds>
+ <bounds x="495" y="271" width="58" height="28"/>
</element>
<element name="lamp125" ref="lamp_125_1_border" state="0">
- <bounds x="307" y="269" width="62" height="32">
- </bounds>
+ <bounds x="307" y="269" width="62" height="32"/>
</element>
<element name="lamp125" ref="lamp_125_1" state="0">
- <bounds x="309" y="271" width="58" height="28">
- </bounds>
+ <bounds x="309" y="271" width="58" height="28"/>
</element>
<element name="lamp111" ref="lamp_111_1_border" state="0">
- <bounds x="399" y="219" width="58" height="32">
- </bounds>
+ <bounds x="399" y="219" width="58" height="32"/>
</element>
<element name="lamp111" ref="lamp_111_1" state="0">
- <bounds x="401" y="221" width="54" height="28">
- </bounds>
+ <bounds x="401" y="221" width="54" height="28"/>
</element>
<element name="lamp97" ref="lamp_97_1_border" state="0">
- <bounds x="399" y="187" width="58" height="32">
- </bounds>
+ <bounds x="399" y="187" width="58" height="32"/>
</element>
<element name="lamp97" ref="lamp_97_1" state="0">
- <bounds x="401" y="189" width="54" height="28">
- </bounds>
+ <bounds x="401" y="189" width="54" height="28"/>
</element>
<element name="lamp99" ref="lamp_99_1_border" state="0">
- <bounds x="399" y="155" width="58" height="32">
- </bounds>
+ <bounds x="399" y="155" width="58" height="32"/>
</element>
<element name="lamp99" ref="lamp_99_1" state="0">
- <bounds x="401" y="157" width="54" height="28">
- </bounds>
+ <bounds x="401" y="157" width="54" height="28"/>
</element>
<element name="lamp101" ref="lamp_101_1_border" state="0">
- <bounds x="399" y="123" width="58" height="32">
- </bounds>
+ <bounds x="399" y="123" width="58" height="32"/>
</element>
<element name="lamp101" ref="lamp_101_1" state="0">
- <bounds x="401" y="125" width="54" height="28">
- </bounds>
+ <bounds x="401" y="125" width="54" height="28"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="341" y="187" width="58" height="32">
- </bounds>
+ <bounds x="341" y="187" width="58" height="32"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="343" y="189" width="54" height="28">
- </bounds>
+ <bounds x="343" y="189" width="54" height="28"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="341" y="155" width="58" height="32">
- </bounds>
+ <bounds x="341" y="155" width="58" height="32"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="343" y="157" width="54" height="28">
- </bounds>
+ <bounds x="343" y="157" width="54" height="28"/>
</element>
<element name="lamp100" ref="lamp_100_1_border" state="0">
- <bounds x="341" y="123" width="58" height="32">
- </bounds>
+ <bounds x="341" y="123" width="58" height="32"/>
</element>
<element name="lamp100" ref="lamp_100_1" state="0">
- <bounds x="343" y="125" width="54" height="28">
- </bounds>
+ <bounds x="343" y="125" width="54" height="28"/>
</element>
<element name="lamp110" ref="lamp_110_1_border" state="0">
- <bounds x="341" y="219" width="58" height="32">
- </bounds>
+ <bounds x="341" y="219" width="58" height="32"/>
</element>
<element name="lamp110" ref="lamp_110_1" state="0">
- <bounds x="343" y="221" width="54" height="28">
- </bounds>
+ <bounds x="343" y="221" width="54" height="28"/>
</element>
<element name="lamp83" ref="lamp_83_1_border" state="0">
- <bounds x="293" y="6" width="28" height="32">
- </bounds>
+ <bounds x="293" y="6" width="28" height="32"/>
</element>
<element name="lamp83" ref="lamp_83_1" state="0">
- <bounds x="295" y="8" width="24" height="28">
- </bounds>
+ <bounds x="295" y="8" width="24" height="28"/>
</element>
<element name="lamp85" ref="lamp_85_1_border" state="0">
- <bounds x="321" y="6" width="28" height="32">
- </bounds>
+ <bounds x="321" y="6" width="28" height="32"/>
</element>
<element name="lamp85" ref="lamp_85_1" state="0">
- <bounds x="323" y="8" width="24" height="28">
- </bounds>
+ <bounds x="323" y="8" width="24" height="28"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="405" y="6" width="28" height="32">
- </bounds>
+ <bounds x="405" y="6" width="28" height="32"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="407" y="8" width="24" height="28">
- </bounds>
+ <bounds x="407" y="8" width="24" height="28"/>
</element>
<element name="lamp86" ref="lamp_86_1_border" state="0">
- <bounds x="433" y="6" width="28" height="32">
- </bounds>
+ <bounds x="433" y="6" width="28" height="32"/>
</element>
<element name="lamp86" ref="lamp_86_1" state="0">
- <bounds x="435" y="8" width="24" height="28">
- </bounds>
+ <bounds x="435" y="8" width="24" height="28"/>
</element>
<element name="lamp87" ref="lamp_87_1_border" state="0">
- <bounds x="377" y="6" width="28" height="32">
- </bounds>
+ <bounds x="377" y="6" width="28" height="32"/>
</element>
<element name="lamp87" ref="lamp_87_1" state="0">
- <bounds x="379" y="8" width="24" height="28">
- </bounds>
+ <bounds x="379" y="8" width="24" height="28"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="349" y="6" width="28" height="32">
- </bounds>
+ <bounds x="349" y="6" width="28" height="32"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="351" y="8" width="24" height="28">
- </bounds>
+ <bounds x="351" y="8" width="24" height="28"/>
</element>
<element name="lamp51" ref="lamp_51_1_border" state="0">
- <bounds x="18" y="453" width="46" height="24">
- </bounds>
+ <bounds x="18" y="453" width="46" height="24"/>
</element>
<element name="lamp51" ref="lamp_51_1" state="0">
- <bounds x="20" y="455" width="42" height="20">
- </bounds>
+ <bounds x="20" y="455" width="42" height="20"/>
</element>
<element name="lamp102" ref="lamp_102_1_border" state="0">
- <bounds x="560" y="418" width="42" height="20">
- </bounds>
+ <bounds x="560" y="418" width="42" height="20"/>
</element>
<element name="lamp102" ref="lamp_102_1" state="0">
- <bounds x="562" y="420" width="38" height="16">
- </bounds>
+ <bounds x="562" y="420" width="38" height="16"/>
</element>
<element name="lamp103" ref="lamp_103_1_border" state="0">
- <bounds x="560" y="438" width="42" height="20">
- </bounds>
+ <bounds x="560" y="438" width="42" height="20"/>
</element>
<element name="lamp103" ref="lamp_103_1" state="0">
- <bounds x="562" y="440" width="38" height="16">
- </bounds>
+ <bounds x="562" y="440" width="38" height="16"/>
</element>
<element name="lamp88" ref="lamp_88_1_border" state="0">
- <bounds x="560" y="458" width="42" height="20">
- </bounds>
+ <bounds x="560" y="458" width="42" height="20"/>
</element>
<element name="lamp88" ref="lamp_88_1" state="0">
- <bounds x="562" y="460" width="38" height="16">
- </bounds>
+ <bounds x="562" y="460" width="38" height="16"/>
</element>
<element name="lamp81" ref="lamp_81_1_border" state="0">
- <bounds x="690" y="374" width="36" height="36">
- </bounds>
+ <bounds x="690" y="374" width="36" height="36"/>
</element>
<element name="lamp81" ref="lamp_81_1" state="0">
- <bounds x="692" y="376" width="32" height="32">
- </bounds>
+ <bounds x="692" y="376" width="32" height="32"/>
</element>
<element name="lamp38" ref="lamp_38_1_border" state="0">
- <bounds x="693" y="3" width="52" height="30">
- </bounds>
+ <bounds x="693" y="3" width="52" height="30"/>
</element>
<element name="lamp38" ref="lamp_38_1" state="0">
- <bounds x="695" y="5" width="48" height="26">
- </bounds>
+ <bounds x="695" y="5" width="48" height="26"/>
</element>
<element name="lamp45" ref="lamp_45_1_border" state="0">
- <bounds x="693" y="33" width="52" height="30">
- </bounds>
+ <bounds x="693" y="33" width="52" height="30"/>
</element>
<element name="lamp45" ref="lamp_45_1" state="0">
- <bounds x="695" y="35" width="48" height="26">
- </bounds>
+ <bounds x="695" y="35" width="48" height="26"/>
</element>
<element name="lamp44" ref="lamp_44_1_border" state="0">
- <bounds x="693" y="63" width="52" height="30">
- </bounds>
+ <bounds x="693" y="63" width="52" height="30"/>
</element>
<element name="lamp44" ref="lamp_44_1" state="0">
- <bounds x="695" y="65" width="48" height="26">
- </bounds>
+ <bounds x="695" y="65" width="48" height="26"/>
</element>
<element name="lamp43" ref="lamp_43_1_border" state="0">
- <bounds x="693" y="93" width="52" height="30">
- </bounds>
+ <bounds x="693" y="93" width="52" height="30"/>
</element>
<element name="lamp43" ref="lamp_43_1" state="0">
- <bounds x="695" y="95" width="48" height="26">
- </bounds>
+ <bounds x="695" y="95" width="48" height="26"/>
</element>
<element name="lamp55" ref="lamp_55_1_border" state="0">
- <bounds x="693" y="123" width="52" height="30">
- </bounds>
+ <bounds x="693" y="123" width="52" height="30"/>
</element>
<element name="lamp55" ref="lamp_55_1" state="0">
- <bounds x="695" y="125" width="48" height="26">
- </bounds>
+ <bounds x="695" y="125" width="48" height="26"/>
</element>
<element name="lamp54" ref="lamp_54_1_border" state="0">
- <bounds x="693" y="153" width="52" height="30">
- </bounds>
+ <bounds x="693" y="153" width="52" height="30"/>
</element>
<element name="lamp54" ref="lamp_54_1" state="0">
- <bounds x="695" y="155" width="48" height="26">
- </bounds>
+ <bounds x="695" y="155" width="48" height="26"/>
</element>
<element name="lamp53" ref="lamp_53_1_border" state="0">
- <bounds x="693" y="183" width="52" height="30">
- </bounds>
+ <bounds x="693" y="183" width="52" height="30"/>
</element>
<element name="lamp53" ref="lamp_53_1" state="0">
- <bounds x="695" y="185" width="48" height="26">
- </bounds>
+ <bounds x="695" y="185" width="48" height="26"/>
</element>
<element name="lamp52" ref="lamp_52_1_border" state="0">
- <bounds x="693" y="213" width="52" height="30">
- </bounds>
+ <bounds x="693" y="213" width="52" height="30"/>
</element>
<element name="lamp52" ref="lamp_52_1" state="0">
- <bounds x="695" y="215" width="48" height="26">
- </bounds>
+ <bounds x="695" y="215" width="48" height="26"/>
</element>
<element name="lamp40" ref="colour_button_120_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="611" y="605" width="82" height="38">
- </bounds>
+ <bounds x="611" y="605" width="82" height="38"/>
</element>
<element name="lamp40" ref="colour_button_120" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="613" y="607" width="78" height="34">
- </bounds>
+ <bounds x="613" y="607" width="78" height="34"/>
</element>
<element name="lamp41" ref="colour_button_121_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="698" y="605" width="82" height="38">
- </bounds>
+ <bounds x="698" y="605" width="82" height="38"/>
</element>
<element name="lamp41" ref="colour_button_121" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="700" y="607" width="78" height="34">
- </bounds>
+ <bounds x="700" y="607" width="78" height="34"/>
</element>
<element name="lamp24" ref="colour_button_122_border" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="186" y="605" width="82" height="38">
- </bounds>
+ <bounds x="186" y="605" width="82" height="38"/>
</element>
<element name="lamp24" ref="colour_button_122" state="0" inputtag="BLACK2" inputmask="0x01">
- <bounds x="188" y="607" width="78" height="34">
- </bounds>
+ <bounds x="188" y="607" width="78" height="34"/>
</element>
<element name="lamp48" ref="colour_button_123_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="524" y="605" width="82" height="38">
- </bounds>
+ <bounds x="524" y="605" width="82" height="38"/>
</element>
<element name="lamp48" ref="colour_button_123" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="526" y="607" width="78" height="34">
- </bounds>
+ <bounds x="526" y="607" width="78" height="34"/>
</element>
<element name="lamp25" ref="colour_button_124_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="273" y="605" width="82" height="38">
- </bounds>
+ <bounds x="273" y="605" width="82" height="38"/>
</element>
<element name="lamp25" ref="colour_button_124" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="275" y="607" width="78" height="34">
- </bounds>
+ <bounds x="275" y="607" width="78" height="34"/>
</element>
<element name="lamp32" ref="colour_button_125_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="437" y="605" width="82" height="38">
- </bounds>
+ <bounds x="437" y="605" width="82" height="38"/>
</element>
<element name="lamp32" ref="colour_button_125" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="439" y="607" width="78" height="34">
- </bounds>
+ <bounds x="439" y="607" width="78" height="34"/>
</element>
<element name="lamp26" ref="colour_button_126_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="355" y="605" width="82" height="38">
- </bounds>
+ <bounds x="355" y="605" width="82" height="38"/>
</element>
<element name="lamp26" ref="colour_button_126" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="357" y="607" width="78" height="34">
- </bounds>
+ <bounds x="357" y="607" width="78" height="34"/>
</element>
<element name="lamp57" ref="colour_button_127_border" state="0" inputtag="ORANGE2" inputmask="0x08">
- <bounds x="730" y="545" width="42" height="27">
- </bounds>
+ <bounds x="730" y="545" width="42" height="27"/>
</element>
<element name="lamp57" ref="colour_button_127" state="0" inputtag="ORANGE2" inputmask="0x08">
- <bounds x="732" y="547" width="38" height="23">
- </bounds>
+ <bounds x="732" y="547" width="38" height="23"/>
</element>
<element name="lamp49" ref="colour_button_129_border" state="0" inputtag="BLACK1" inputmask="0x08">
- <bounds x="20" y="357" width="72" height="38">
- </bounds>
+ <bounds x="20" y="357" width="72" height="38"/>
</element>
<element name="lamp49" ref="colour_button_129" state="0" inputtag="BLACK1" inputmask="0x08">
- <bounds x="22" y="359" width="68" height="34">
- </bounds>
+ <bounds x="22" y="359" width="68" height="34"/>
</element>
<element name="lamp50" ref="colour_button_130_border" state="0" inputtag="BLACK1" inputmask="0x04">
- <bounds x="92" y="357" width="72" height="38">
- </bounds>
+ <bounds x="92" y="357" width="72" height="38"/>
</element>
<element name="lamp50" ref="colour_button_130" state="0" inputtag="BLACK1" inputmask="0x04">
- <bounds x="94" y="359" width="68" height="34">
- </bounds>
+ <bounds x="94" y="359" width="68" height="34"/>
</element>
<element name="lamp42" ref="colour_button_131_border" state="0" inputtag="BLACK1" inputmask="0x02">
- <bounds x="164" y="357" width="72" height="38">
- </bounds>
+ <bounds x="164" y="357" width="72" height="38"/>
</element>
<element name="lamp42" ref="colour_button_131" state="0" inputtag="BLACK1" inputmask="0x02">
- <bounds x="166" y="359" width="68" height="34">
- </bounds>
+ <bounds x="166" y="359" width="68" height="34"/>
</element>
<element name="lamp34" ref="colour_button_132_border" state="0" inputtag="BLACK1" inputmask="0x01">
- <bounds x="549" y="379" width="62" height="38">
- </bounds>
+ <bounds x="549" y="379" width="62" height="38"/>
</element>
<element name="lamp34" ref="colour_button_132" state="0" inputtag="BLACK1" inputmask="0x01">
- <bounds x="551" y="381" width="58" height="34">
- </bounds>
+ <bounds x="551" y="381" width="58" height="34"/>
</element>
<element ref="vfd0_background">
- <bounds x="259" y="381" width="272" height="30">
- </bounds>
+ <bounds x="259" y="381" width="272" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
- <bounds x="259" y="381" width="17" height="30">
- </bounds>
+ <bounds x="259" y="381" width="17" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
- <bounds x="276" y="381" width="17" height="30">
- </bounds>
+ <bounds x="276" y="381" width="17" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
- <bounds x="293" y="381" width="17" height="30">
- </bounds>
+ <bounds x="293" y="381" width="17" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
- <bounds x="310" y="381" width="17" height="30">
- </bounds>
+ <bounds x="310" y="381" width="17" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
- <bounds x="327" y="381" width="17" height="30">
- </bounds>
+ <bounds x="327" y="381" width="17" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
- <bounds x="344" y="381" width="17" height="30">
- </bounds>
+ <bounds x="344" y="381" width="17" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
- <bounds x="361" y="381" width="17" height="30">
- </bounds>
+ <bounds x="361" y="381" width="17" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
- <bounds x="378" y="381" width="17" height="30">
- </bounds>
+ <bounds x="378" y="381" width="17" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
- <bounds x="395" y="381" width="17" height="30">
- </bounds>
+ <bounds x="395" y="381" width="17" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
- <bounds x="412" y="381" width="17" height="30">
- </bounds>
+ <bounds x="412" y="381" width="17" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
- <bounds x="429" y="381" width="17" height="30">
- </bounds>
+ <bounds x="429" y="381" width="17" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
- <bounds x="446" y="381" width="17" height="30">
- </bounds>
+ <bounds x="446" y="381" width="17" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
- <bounds x="463" y="381" width="17" height="30">
- </bounds>
+ <bounds x="463" y="381" width="17" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
- <bounds x="480" y="381" width="17" height="30">
- </bounds>
+ <bounds x="480" y="381" width="17" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
- <bounds x="497" y="381" width="17" height="30">
- </bounds>
+ <bounds x="497" y="381" width="17" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
- <bounds x="514" y="381" width="17" height="30">
- </bounds>
+ <bounds x="514" y="381" width="17" height="30"/>
</element>
<element name="label4" ref="label_4">
- <bounds x="464" y="9" width="60" height="24">
- </bounds>
+ <bounds x="464" y="9" width="60" height="24"/>
</element>
<element name="label5" ref="label_5">
- <bounds x="357" y="84" width="68" height="38">
- </bounds>
+ <bounds x="357" y="84" width="68" height="38"/>
</element>
<element name="label75" ref="label_75">
- <bounds x="443" y="309" width="57" height="64">
- </bounds>
+ <bounds x="443" y="309" width="57" height="64"/>
</element>
<element name="label76" ref="label_76">
- <bounds x="313" y="325" width="49" height="22">
- </bounds>
+ <bounds x="313" y="325" width="49" height="22"/>
</element>
<element name="label77" ref="label_77">
- <bounds x="247" y="495" width="25" height="26">
- </bounds>
+ <bounds x="247" y="495" width="25" height="26"/>
</element>
<element name="label78" ref="label_78">
- <bounds x="520" y="495" width="25" height="26">
- </bounds>
+ <bounds x="520" y="495" width="25" height="26"/>
</element>
<element name="label100" ref="label_100">
- <bounds x="567" y="296" width="59" height="16">
- </bounds>
+ <bounds x="567" y="296" width="59" height="16"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/m4tenten.lay b/src/mame/layout/m4tenten.lay
index 469ac4ec070..92e345669cc 100644
--- a/src/mame/layout/m4tenten.lay
+++ b/src/mame/layout/m4tenten.lay
@@ -8,2765 +8,2111 @@
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
- <color red="0.00" green="0.00" blue="0.00">
- </color>
+ <color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_27_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.43" blue="0.21">
- </color>
+ <color red="0.50" green="0.43" blue="0.21"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.05">
- </color>
+ <color red="0.12" green="0.11" blue="0.05"/>
</rect>
</element>
<element name="lamp_27_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.42">
- </color>
+ <color red="1.00" green="0.85" blue="0.42"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.10">
- </color>
+ <color red="0.25" green="0.21" blue="0.10"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_28_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.17">
- </color>
+ <color red="0.50" green="0.42" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.10" blue="0.04">
- </color>
+ <color red="0.12" green="0.10" blue="0.04"/>
</rect>
</element>
<element name="lamp_28_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.84" blue="0.34">
- </color>
+ <color red="1.00" green="0.84" blue="0.34"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.08">
- </color>
+ <color red="0.25" green="0.21" blue="0.08"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_29_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.40" blue="0.13">
- </color>
+ <color red="0.50" green="0.40" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.10" blue="0.03">
- </color>
+ <color red="0.12" green="0.10" blue="0.03"/>
</rect>
</element>
<element name="lamp_29_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.81" blue="0.25">
- </color>
+ <color red="1.00" green="0.81" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.20" blue="0.06">
- </color>
+ <color red="0.25" green="0.20" blue="0.06"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_30_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.40" blue="0.09">
- </color>
+ <color red="0.50" green="0.40" blue="0.09"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.10" blue="0.02">
- </color>
+ <color red="0.12" green="0.10" blue="0.02"/>
</rect>
</element>
<element name="lamp_30_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.79" blue="0.17">
- </color>
+ <color red="1.00" green="0.79" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.20" blue="0.04">
- </color>
+ <color red="0.25" green="0.20" blue="0.04"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_31_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.38" blue="0.04">
- </color>
+ <color red="0.50" green="0.38" blue="0.04"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.09" blue="0.01">
- </color>
+ <color red="0.12" green="0.09" blue="0.01"/>
</rect>
</element>
<element name="lamp_31_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.77" blue="0.09">
- </color>
+ <color red="1.00" green="0.77" blue="0.09"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.19" blue="0.02">
- </color>
+ <color red="0.25" green="0.19" blue="0.02"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_39_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.37" blue="0.00">
- </color>
+ <color red="0.50" green="0.37" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.09" blue="0.00">
- </color>
+ <color red="0.12" green="0.09" blue="0.00"/>
</rect>
</element>
<element name="lamp_39_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.75" blue="0.00">
- </color>
+ <color red="1.00" green="0.75" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.18" blue="0.00">
- </color>
+ <color red="0.25" green="0.18" blue="0.00"/>
</rect>
<text string="">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_27_2_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.43" blue="0.21">
- </color>
+ <color red="0.50" green="0.43" blue="0.21"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.11" blue="0.05">
- </color>
+ <color red="0.12" green="0.11" blue="0.05"/>
</disk>
</element>
<element name="lamp_27_2" defstate="0">
<disk state="1">
- <color red="1.00" green="0.85" blue="0.42">
- </color>
+ <color red="1.00" green="0.85" blue="0.42"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.21" blue="0.10">
- </color>
+ <color red="0.25" green="0.21" blue="0.10"/>
</disk>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_28_2_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.42" blue="0.17">
- </color>
+ <color red="0.50" green="0.42" blue="0.17"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.10" blue="0.04">
- </color>
+ <color red="0.12" green="0.10" blue="0.04"/>
</disk>
</element>
<element name="lamp_28_2" defstate="0">
<disk state="1">
- <color red="1.00" green="0.84" blue="0.34">
- </color>
+ <color red="1.00" green="0.84" blue="0.34"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.21" blue="0.08">
- </color>
+ <color red="0.25" green="0.21" blue="0.08"/>
</disk>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_29_2_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.40" blue="0.13">
- </color>
+ <color red="0.50" green="0.40" blue="0.13"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.10" blue="0.03">
- </color>
+ <color red="0.12" green="0.10" blue="0.03"/>
</disk>
</element>
<element name="lamp_29_2" defstate="0">
<disk state="1">
- <color red="1.00" green="0.81" blue="0.25">
- </color>
+ <color red="1.00" green="0.81" blue="0.25"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.20" blue="0.06">
- </color>
+ <color red="0.25" green="0.20" blue="0.06"/>
</disk>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_30_2_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.40" blue="0.09">
- </color>
+ <color red="0.50" green="0.40" blue="0.09"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.10" blue="0.02">
- </color>
+ <color red="0.12" green="0.10" blue="0.02"/>
</disk>
</element>
<element name="lamp_30_2" defstate="0">
<disk state="1">
- <color red="1.00" green="0.79" blue="0.17">
- </color>
+ <color red="1.00" green="0.79" blue="0.17"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.20" blue="0.04">
- </color>
+ <color red="0.25" green="0.20" blue="0.04"/>
</disk>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_31_2_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.38" blue="0.04">
- </color>
+ <color red="0.50" green="0.38" blue="0.04"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.09" blue="0.01">
- </color>
+ <color red="0.12" green="0.09" blue="0.01"/>
</disk>
</element>
<element name="lamp_31_2" defstate="0">
<disk state="1">
- <color red="1.00" green="0.77" blue="0.09">
- </color>
+ <color red="1.00" green="0.77" blue="0.09"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.19" blue="0.02">
- </color>
+ <color red="0.25" green="0.19" blue="0.02"/>
</disk>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_39_2_border" defstate="0">
<disk state="1">
- <color red="0.50" green="0.37" blue="0.00">
- </color>
+ <color red="0.50" green="0.37" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.12" green="0.09" blue="0.00">
- </color>
+ <color red="0.12" green="0.09" blue="0.00"/>
</disk>
</element>
<element name="lamp_39_2" defstate="0">
<disk state="1">
- <color red="1.00" green="0.75" blue="0.00">
- </color>
+ <color red="1.00" green="0.75" blue="0.00"/>
</disk>
<disk state="0">
- <color red="0.25" green="0.18" blue="0.00">
- </color>
+ <color red="0.25" green="0.18" blue="0.00"/>
</disk>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="lamp_47_1_border" defstate="0">
<rect state="1">
- <color red="0.00" green="0.25" blue="0.50">
- </color>
+ <color red="0.00" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_47_1" defstate="0">
<rect state="1">
- <color red="0.00" green="0.50" blue="1.00">
- </color>
+ <color red="0.00" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.13" blue="0.25">
- </color>
+ <color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_47_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_47_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_46_1_border" defstate="0">
<rect state="1">
- <color red="0.04" green="0.27" blue="0.50">
- </color>
+ <color red="0.04" green="0.27" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.01" green="0.07" blue="0.12">
- </color>
+ <color red="0.01" green="0.07" blue="0.12"/>
</rect>
</element>
<element name="lamp_46_1" defstate="0">
<rect state="1">
- <color red="0.08" green="0.54" blue="1.00">
- </color>
+ <color red="0.08" green="0.54" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.02" green="0.13" blue="0.25">
- </color>
+ <color red="0.02" green="0.13" blue="0.25"/>
</rect>
<text string="9">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_46_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_46_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_45_1_border" defstate="0">
<rect state="1">
- <color red="0.08" green="0.29" blue="0.50">
- </color>
+ <color red="0.08" green="0.29" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.02" green="0.07" blue="0.12">
- </color>
+ <color red="0.02" green="0.07" blue="0.12"/>
</rect>
</element>
<element name="lamp_45_1" defstate="0">
<rect state="1">
- <color red="0.17" green="0.58" blue="1.00">
- </color>
+ <color red="0.17" green="0.58" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.04" green="0.15" blue="0.25">
- </color>
+ <color red="0.04" green="0.15" blue="0.25"/>
</rect>
<text string="8">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_45_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_45_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_44_1_border" defstate="0">
<rect state="1">
- <color red="0.13" green="0.31" blue="0.50">
- </color>
+ <color red="0.13" green="0.31" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.03" green="0.07" blue="0.12">
- </color>
+ <color red="0.03" green="0.07" blue="0.12"/>
</rect>
</element>
<element name="lamp_44_1" defstate="0">
<rect state="1">
- <color red="0.25" green="0.62" blue="1.00">
- </color>
+ <color red="0.25" green="0.62" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.15" blue="0.25">
- </color>
+ <color red="0.06" green="0.15" blue="0.25"/>
</rect>
<text string="7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_44_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_44_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_43_1_border" defstate="0">
<rect state="1">
- <color red="0.16" green="0.33" blue="0.50">
- </color>
+ <color red="0.16" green="0.33" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.04" green="0.08" blue="0.12">
- </color>
+ <color red="0.04" green="0.08" blue="0.12"/>
</rect>
</element>
<element name="lamp_43_1" defstate="0">
<rect state="1">
- <color red="0.33" green="0.67" blue="1.00">
- </color>
+ <color red="0.33" green="0.67" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.08" green="0.16" blue="0.25">
- </color>
+ <color red="0.08" green="0.16" blue="0.25"/>
</rect>
<text string="6">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_43_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_43_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_42_1_border" defstate="0">
<rect state="1">
- <color red="0.21" green="0.35" blue="0.50">
- </color>
+ <color red="0.21" green="0.35" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.05" green="0.09" blue="0.12">
- </color>
+ <color red="0.05" green="0.09" blue="0.12"/>
</rect>
</element>
<element name="lamp_42_1" defstate="0">
<rect state="1">
- <color red="0.42" green="0.71" blue="1.00">
- </color>
+ <color red="0.42" green="0.71" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.10" green="0.18" blue="0.25">
- </color>
+ <color red="0.10" green="0.18" blue="0.25"/>
</rect>
<text string="5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_42_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_42_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_35_1_border" defstate="0">
<rect state="1">
- <color red="0.25" green="0.37" blue="0.50">
- </color>
+ <color red="0.25" green="0.37" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.06" green="0.09" blue="0.12">
- </color>
+ <color red="0.06" green="0.09" blue="0.12"/>
</rect>
</element>
<element name="lamp_35_1" defstate="0">
<rect state="1">
- <color red="0.50" green="0.75" blue="1.00">
- </color>
+ <color red="0.50" green="0.75" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.13" green="0.18" blue="0.25">
- </color>
+ <color red="0.13" green="0.18" blue="0.25"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_35_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_35_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_36_1_border" defstate="0">
<rect state="1">
- <color red="0.29" green="0.40" blue="0.50">
- </color>
+ <color red="0.29" green="0.40" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.07" green="0.10" blue="0.12">
- </color>
+ <color red="0.07" green="0.10" blue="0.12"/>
</rect>
</element>
<element name="lamp_36_1" defstate="0">
<rect state="1">
- <color red="0.58" green="0.79" blue="1.00">
- </color>
+ <color red="0.58" green="0.79" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.15" green="0.20" blue="0.25">
- </color>
+ <color red="0.15" green="0.20" blue="0.25"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_36_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_36_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_37_1_border" defstate="0">
<rect state="1">
- <color red="0.33" green="0.42" blue="0.50">
- </color>
+ <color red="0.33" green="0.42" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.08" green="0.10" blue="0.12">
- </color>
+ <color red="0.08" green="0.10" blue="0.12"/>
</rect>
</element>
<element name="lamp_37_1" defstate="0">
<rect state="1">
- <color red="0.67" green="0.84" blue="1.00">
- </color>
+ <color red="0.67" green="0.84" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.16" green="0.21" blue="0.25">
- </color>
+ <color red="0.16" green="0.21" blue="0.25"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_37_2_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_37_2" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shots">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_3_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.22" blue="0.13">
- </color>
+ <color red="0.50" green="0.22" blue="0.13"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.03">
- </color>
+ <color red="0.12" green="0.05" blue="0.03"/>
</rect>
</element>
<element name="lamp_3_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.44" blue="0.25">
- </color>
+ <color red="1.00" green="0.44" blue="0.25"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.11" blue="0.06">
- </color>
+ <color red="0.25" green="0.11" blue="0.06"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_4_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.19" blue="0.08">
- </color>
+ <color red="0.50" green="0.19" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.05" blue="0.02">
- </color>
+ <color red="0.12" green="0.05" blue="0.02"/>
</rect>
</element>
<element name="lamp_4_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.38" blue="0.17">
- </color>
+ <color red="1.00" green="0.38" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.09" blue="0.04">
- </color>
+ <color red="0.25" green="0.09" blue="0.04"/>
</rect>
<text string="2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_5_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.16" blue="0.04">
- </color>
+ <color red="0.50" green="0.16" blue="0.04"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.04" blue="0.01">
- </color>
+ <color red="0.12" green="0.04" blue="0.01"/>
</rect>
</element>
<element name="lamp_5_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.31" blue="0.08">
- </color>
+ <color red="1.00" green="0.31" blue="0.08"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.08" blue="0.02">
- </color>
+ <color red="0.25" green="0.08" blue="0.02"/>
</rect>
<text string="3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_38_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.42" blue="0.00">
- </color>
+ <color red="0.50" green="0.42" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.11" blue="0.00">
- </color>
+ <color red="0.12" green="0.11" blue="0.00"/>
</rect>
</element>
<element name="lamp_38_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.85" blue="0.00">
- </color>
+ <color red="1.00" green="0.85" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.21" blue="0.00">
- </color>
+ <color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="Shot">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_14_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.35" blue="0.00">
- </color>
+ <color red="0.50" green="0.35" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.09" blue="0.00">
- </color>
+ <color red="0.12" green="0.09" blue="0.00"/>
</rect>
</element>
<element name="lamp_14_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.70" blue="0.00">
- </color>
+ <color red="1.00" green="0.70" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.17" blue="0.00">
- </color>
+ <color red="0.25" green="0.17" blue="0.00"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_23_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.40" blue="0.16">
- </color>
+ <color red="0.50" green="0.40" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.10" blue="0.04">
- </color>
+ <color red="0.12" green="0.10" blue="0.04"/>
</rect>
</element>
<element name="lamp_23_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.80" blue="0.33">
- </color>
+ <color red="1.00" green="0.80" blue="0.33"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.20" blue="0.08">
- </color>
+ <color red="0.25" green="0.20" blue="0.08"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_22_1_border" defstate="0">
<rect state="1">
- <color red="0.44" green="0.29" blue="0.45">
- </color>
+ <color red="0.44" green="0.29" blue="0.45"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.07" blue="0.11">
- </color>
+ <color red="0.11" green="0.07" blue="0.11"/>
</rect>
</element>
<element name="lamp_22_1" defstate="0">
<rect state="1">
- <color red="0.87" green="0.59" blue="0.91">
- </color>
+ <color red="0.87" green="0.59" blue="0.91"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.15" blue="0.23">
- </color>
+ <color red="0.22" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_21_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.33" blue="0.17">
- </color>
+ <color red="0.45" green="0.33" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.08" blue="0.04">
- </color>
+ <color red="0.11" green="0.08" blue="0.04"/>
</rect>
</element>
<element name="lamp_21_1" defstate="0">
<rect state="1">
- <color red="0.90" green="0.67" blue="0.35">
- </color>
+ <color red="0.90" green="0.67" blue="0.35"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.16" blue="0.09">
- </color>
+ <color red="0.22" green="0.16" blue="0.09"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_20_1_border" defstate="0">
<rect state="1">
- <color red="0.39" green="0.40" blue="0.19">
- </color>
+ <color red="0.39" green="0.40" blue="0.19"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.10" blue="0.05">
- </color>
+ <color red="0.09" green="0.10" blue="0.05"/>
</rect>
</element>
<element name="lamp_20_1" defstate="0">
<rect state="1">
- <color red="0.78" green="0.80" blue="0.38">
- </color>
+ <color red="0.78" green="0.80" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.20" blue="0.09">
- </color>
+ <color red="0.19" green="0.20" blue="0.09"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_15_1_border" defstate="0">
<rect state="1">
- <color red="0.04" green="0.36" blue="0.46">
- </color>
+ <color red="0.04" green="0.36" blue="0.46"/>
</rect>
<rect state="0">
- <color red="0.01" green="0.09" blue="0.11">
- </color>
+ <color red="0.01" green="0.09" blue="0.11"/>
</rect>
</element>
<element name="lamp_15_1" defstate="0">
<rect state="1">
- <color red="0.07" green="0.73" blue="0.93">
- </color>
+ <color red="0.07" green="0.73" blue="0.93"/>
</rect>
<rect state="0">
- <color red="0.02" green="0.18" blue="0.23">
- </color>
+ <color red="0.02" green="0.18" blue="0.23"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_68_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.35" blue="0.00">
- </color>
+ <color red="0.50" green="0.35" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.09" blue="0.00">
- </color>
+ <color red="0.12" green="0.09" blue="0.00"/>
</rect>
</element>
<element name="lamp_68_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.70" blue="0.00">
- </color>
+ <color red="1.00" green="0.70" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.17" blue="0.00">
- </color>
+ <color red="0.25" green="0.17" blue="0.00"/>
</rect>
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_82_1_border" defstate="0">
<rect state="1">
- <color red="0.04" green="0.36" blue="0.46">
- </color>
+ <color red="0.04" green="0.36" blue="0.46"/>
</rect>
<rect state="0">
- <color red="0.01" green="0.09" blue="0.11">
- </color>
+ <color red="0.01" green="0.09" blue="0.11"/>
</rect>
</element>
<element name="lamp_82_1" defstate="0">
<rect state="1">
- <color red="0.07" green="0.73" blue="0.93">
- </color>
+ <color red="0.07" green="0.73" blue="0.93"/>
</rect>
<rect state="0">
- <color red="0.02" green="0.18" blue="0.23">
- </color>
+ <color red="0.02" green="0.18" blue="0.23"/>
</rect>
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_38_2_border" defstate="0">
<rect state="1">
- <color red="0.37" green="0.44" blue="0.50">
- </color>
+ <color red="0.37" green="0.44" blue="0.50"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.11" blue="0.12">
- </color>
+ <color red="0.09" green="0.11" blue="0.12"/>
</rect>
</element>
<element name="lamp_38_2" defstate="0">
<rect state="1">
- <color red="0.75" green="0.87" blue="1.00">
- </color>
+ <color red="0.75" green="0.87" blue="1.00"/>
</rect>
<rect state="0">
- <color red="0.18" green="0.22" blue="0.25">
- </color>
+ <color red="0.18" green="0.22" blue="0.25"/>
</rect>
<text string="1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_7_1_border" defstate="0">
<rect state="1">
- <color red="0.42" green="0.10" blue="0.00">
- </color>
+ <color red="0.42" green="0.10" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.10" green="0.02" blue="0.00">
- </color>
+ <color red="0.10" green="0.02" blue="0.00"/>
</rect>
</element>
<element name="lamp_7_1" defstate="0">
<rect state="1">
- <color red="0.84" green="0.21" blue="0.00">
- </color>
+ <color red="0.84" green="0.21" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.21" green="0.05" blue="0.00">
- </color>
+ <color red="0.21" green="0.05" blue="0.00"/>
</rect>
<text string="NUDGE NOW">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_6_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.13" blue="0.00">
- </color>
+ <color red="0.50" green="0.13" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.03" blue="0.00">
- </color>
+ <color red="0.12" green="0.03" blue="0.00"/>
</rect>
</element>
<element name="lamp_6_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.25" blue="0.00">
- </color>
+ <color red="1.00" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.06" blue="0.00">
- </color>
+ <color red="0.25" green="0.06" blue="0.00"/>
</rect>
<text string="4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_84_1_border" defstate="0">
<rect state="1">
- <color red="0.39" green="0.40" blue="0.19">
- </color>
+ <color red="0.39" green="0.40" blue="0.19"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.10" blue="0.05">
- </color>
+ <color red="0.09" green="0.10" blue="0.05"/>
</rect>
</element>
<element name="lamp_84_1" defstate="0">
<rect state="1">
- <color red="0.78" green="0.80" blue="0.38">
- </color>
+ <color red="0.78" green="0.80" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.20" blue="0.09">
- </color>
+ <color red="0.19" green="0.20" blue="0.09"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_80_1_border" defstate="0">
<rect state="1">
- <color red="0.44" green="0.29" blue="0.45">
- </color>
+ <color red="0.44" green="0.29" blue="0.45"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.07" blue="0.11">
- </color>
+ <color red="0.11" green="0.07" blue="0.11"/>
</rect>
</element>
<element name="lamp_80_1" defstate="0">
<rect state="1">
- <color red="0.87" green="0.59" blue="0.91">
- </color>
+ <color red="0.87" green="0.59" blue="0.91"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.15" blue="0.23">
- </color>
+ <color red="0.22" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_112_1_border" defstate="0">
<rect state="1">
- <color red="0.39" green="0.40" blue="0.19">
- </color>
+ <color red="0.39" green="0.40" blue="0.19"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.10" blue="0.05">
- </color>
+ <color red="0.09" green="0.10" blue="0.05"/>
</rect>
</element>
<element name="lamp_112_1" defstate="0">
<rect state="1">
- <color red="0.78" green="0.80" blue="0.38">
- </color>
+ <color red="0.78" green="0.80" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.20" blue="0.09">
- </color>
+ <color red="0.19" green="0.20" blue="0.09"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_114_1_border" defstate="0">
<rect state="1">
- <color red="0.39" green="0.40" blue="0.19">
- </color>
+ <color red="0.39" green="0.40" blue="0.19"/>
</rect>
<rect state="0">
- <color red="0.09" green="0.10" blue="0.05">
- </color>
+ <color red="0.09" green="0.10" blue="0.05"/>
</rect>
</element>
<element name="lamp_114_1" defstate="0">
<rect state="1">
- <color red="0.78" green="0.80" blue="0.38">
- </color>
+ <color red="0.78" green="0.80" blue="0.38"/>
</rect>
<rect state="0">
- <color red="0.19" green="0.20" blue="0.09">
- </color>
+ <color red="0.19" green="0.20" blue="0.09"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_96_1_border" defstate="0">
<rect state="1">
- <color red="0.45" green="0.33" blue="0.17">
- </color>
+ <color red="0.45" green="0.33" blue="0.17"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.08" blue="0.04">
- </color>
+ <color red="0.11" green="0.08" blue="0.04"/>
</rect>
</element>
<element name="lamp_96_1" defstate="0">
<rect state="1">
- <color red="0.90" green="0.67" blue="0.35">
- </color>
+ <color red="0.90" green="0.67" blue="0.35"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.16" blue="0.09">
- </color>
+ <color red="0.22" green="0.16" blue="0.09"/>
</rect>
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_64_1_border" defstate="0">
<rect state="1">
- <color red="0.50" green="0.40" blue="0.16">
- </color>
+ <color red="0.50" green="0.40" blue="0.16"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.10" blue="0.04">
- </color>
+ <color red="0.12" green="0.10" blue="0.04"/>
</rect>
</element>
<element name="lamp_64_1" defstate="0">
<rect state="1">
- <color red="1.00" green="0.80" blue="0.33">
- </color>
+ <color red="1.00" green="0.80" blue="0.33"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.20" blue="0.08">
- </color>
+ <color red="0.25" green="0.20" blue="0.08"/>
</rect>
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_98_1_border" defstate="0">
<rect state="1">
- <color red="0.44" green="0.29" blue="0.45">
- </color>
+ <color red="0.44" green="0.29" blue="0.45"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.07" blue="0.11">
- </color>
+ <color red="0.11" green="0.07" blue="0.11"/>
</rect>
</element>
<element name="lamp_98_1" defstate="0">
<rect state="1">
- <color red="0.87" green="0.59" blue="0.91">
- </color>
+ <color red="0.87" green="0.59" blue="0.91"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.15" blue="0.23">
- </color>
+ <color red="0.22" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_66_1_border" defstate="0">
<rect state="1">
- <color red="0.44" green="0.29" blue="0.45">
- </color>
+ <color red="0.44" green="0.29" blue="0.45"/>
</rect>
<rect state="0">
- <color red="0.11" green="0.07" blue="0.11">
- </color>
+ <color red="0.11" green="0.07" blue="0.11"/>
</rect>
</element>
<element name="lamp_66_1" defstate="0">
<rect state="1">
- <color red="0.87" green="0.59" blue="0.91">
- </color>
+ <color red="0.87" green="0.59" blue="0.91"/>
</rect>
<rect state="0">
- <color red="0.22" green="0.15" blue="0.23">
- </color>
+ <color red="0.22" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_55_1_border" defstate="0">
<disk state="1">
- <color red="0.02" green="0.24" blue="0.47">
- </color>
+ <color red="0.02" green="0.24" blue="0.47"/>
</disk>
<disk state="0">
- <color red="0.00" green="0.06" blue="0.12">
- </color>
+ <color red="0.00" green="0.06" blue="0.12"/>
</disk>
</element>
<element name="lamp_55_1" defstate="0">
<disk state="1">
- <color red="0.05" green="0.48" blue="0.95">
- </color>
+ <color red="0.05" green="0.48" blue="0.95"/>
</disk>
<disk state="0">
- <color red="0.01" green="0.12" blue="0.24">
- </color>
+ <color red="0.01" green="0.12" blue="0.24"/>
</disk>
<text string="?">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.10" y="0.10" width="0.80" height="0.80">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
</element>
<element name="colour_button_84_border">
<rect state="1">
- <color red="0.00" green="0.50" blue="0.00">
- </color>
+ <color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.12" blue="0.00">
- </color>
+ <color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_84">
<rect state="1">
- <color red="0.00" green="1.00" blue="0.00">
- </color>
+ <color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.00" green="0.25" blue="0.00">
- </color>
+ <color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="Start">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="colour_button_85_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_85">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#x26;Take">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="It">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_86_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_86">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#x26;Reject">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="It">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_87_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_87">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_88_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_88">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_89_border">
<rect state="1">
- <color red="0.50" green="0.00" blue="0.00">
- </color>
+ <color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.00" blue="0.00">
- </color>
+ <color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_89">
<rect state="1">
- <color red="1.00" green="0.00" blue="0.00">
- </color>
+ <color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.00" blue="0.00">
- </color>
+ <color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="Hold">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Nudge">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_90_border">
<rect state="1">
- <color red="0.50" green="0.50" blue="0.00">
- </color>
+ <color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.12" blue="0.00">
- </color>
+ <color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_90">
<rect state="1">
- <color red="1.00" green="1.00" blue="0.00">
- </color>
+ <color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.25" blue="0.00">
- </color>
+ <color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="Cancel">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="Collect">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.50" width="0.90" height="0.45">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_91_border">
<rect state="1">
- <color red="0.50" green="0.25" blue="0.00">
- </color>
+ <color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.12" green="0.06" blue="0.00">
- </color>
+ <color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_91">
<rect state="1">
- <color red="1.00" green="0.50" blue="0.00">
- </color>
+ <color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
- <color red="0.25" green="0.13" blue="0.00">
- </color>
+ <color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="reel_background">
<rect>
- <color red="1.0" green="1.0" blue="1.0">
- </color>
+ <color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="TripleBar(2),Blue7,DoubleBar,Red7(4),TripleBar,DoubleBar,Blue7,DoubleBar,SingleBar(3),Red7,SingleBar,TripleBar,Red7,DoubleBar,SingleBar(5),Blue7">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar(5),SingleBar,DoubleBar,Blue7,TripleBar(3),DoubleBar,Red7,DoubleBar,SingleBar(?),Blue7,SingleBar,TripleBar(4),Red7,DoubleBar,SingleBar(2)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="Red7,TripleBar,DoubleBar(4),Red7,TripleBar,SingleBar,Red7(6),SingleBar,TripleBar,Blue7(3),DoubleBar,SingleBar,Blue7,TripleBar,SingleBar,DoubleBar(5)">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="led_background">
<rect>
- <color red="0.4" green="0.0" blue="0.0">
- </color>
+ <color red="0.4" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_on">
<disk state="1">
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_dot_off">
<disk state="0">
- <color red="0.5" green="0.0" blue="0.0">
- </color>
+ <color red="0.5" green="0.0" blue="0.0"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
- <color red="0.0" green="0.0" blue="0.0">
- </color>
+ <color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_red">
<rect>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</rect>
</element>
<element name="led_digit_rect_blue">
<rect>
- <color red="0.0" green="0.0" blue="1.0">
- </color>
+ <color red="0.0" green="0.0" blue="1.0"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
- <color red="1.0" green="0.0" blue="0.0">
- </color>
+ <color red="1.0" green="0.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_green">
<led7seg>
- <color red="0.0" green="1.0" blue="0.0">
- </color>
+ <color red="0.0" green="1.0" blue="0.0"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
- <color red="0.0" green="0.5" blue="1.0">
- </color>
+ <color red="0.0" green="0.5" blue="1.0"/>
</led7seg>
</element>
<element name="reel_lamp_layer_0" defstate="0">
<rect>
- <color red="0.40" green="0.40" blue="0.40">
- </color>
+ <color red="0.40" green="0.40" blue="0.40"/>
</rect>
<disk state="1">
- <color red="0.50" green="0.50" blue="0.50">
- </color>
+ <color red="0.50" green="0.50" blue="0.50"/>
</disk>
</element>
<element name="reel_lamp_layer_1" defstate="0">
<disk state="1">
- <color red="0.60" green="0.60" blue="0.60">
- </color>
+ <color red="0.60" green="0.60" blue="0.60"/>
</disk>
</element>
<element name="reel_lamp_layer_2" defstate="0">
<disk state="1">
- <color red="0.70" green="0.70" blue="0.70">
- </color>
+ <color red="0.70" green="0.70" blue="0.70"/>
</disk>
</element>
<element name="reel_lamp_layer_3" defstate="0">
<disk state="1">
- <color red="0.80" green="0.80" blue="0.80">
- </color>
+ <color red="0.80" green="0.80" blue="0.80"/>
</disk>
</element>
<element name="reel_lamp_layer_4" defstate="0">
<disk state="1">
- <color red="0.90" green="0.90" blue="0.90">
- </color>
+ <color red="0.90" green="0.90" blue="0.90"/>
</disk>
</element>
<element name="reel_lamp_layer_5" defstate="0">
<disk state="1">
- <color red="1.00" green="1.00" blue="1.00">
- </color>
+ <color red="1.00" green="1.00" blue="1.00"/>
</disk>
</element>
<element name="label_38">
<text string="BANK">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_43">
<text string="&#xA3;">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_71">
<text string="&#xA3;10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_72">
<text string="&#xA3;5">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_73">
<text string="&#xA3;4">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_74">
<text string="&#xA3;3">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_75">
<text string="&#xA3;2">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_76">
<text string="&#xA3;1">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_80">
<text string="CREDITS">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_81">
<text string="V1.0">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_82">
<text string="Force 10">
- <color red="0.0" green="0.0" blue="0.0">
- </color>
- <bounds x="0.05" y="0.05" width="0.90" height="0.90">
- </bounds>
+ <color red="0.0" green="0.0" blue="0.0"/>
+ <bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
- <bounds x="0" y="0" width="718" height="651">
- </bounds>
+ <bounds x="0" y="0" width="718" height="651"/>
</element>
<element ref="reel_background">
- <bounds x="82" y="427" width="80" height="140">
- </bounds>
+ <bounds x="82" y="427" width="80" height="140"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_0" state="0">
- <bounds x="82.0000" y="427.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="82.0000" y="427.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_1" state="0">
- <bounds x="85.3333" y="428.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="85.3333" y="428.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_2" state="0">
- <bounds x="88.6667" y="430.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="88.6667" y="430.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_3" state="0">
- <bounds x="92.0000" y="432.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="92.0000" y="432.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_4" state="0">
- <bounds x="95.3333" y="434.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="95.3333" y="434.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp0" ref="reel_lamp_layer_5" state="0">
- <bounds x="98.6667" y="436.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="98.6667" y="436.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_0" state="0">
- <bounds x="82.0000" y="473.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="82.0000" y="473.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_1" state="0">
- <bounds x="85.3333" y="475.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="85.3333" y="475.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_2" state="0">
- <bounds x="88.6667" y="477.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="88.6667" y="477.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_3" state="0">
- <bounds x="92.0000" y="479.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="92.0000" y="479.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_4" state="0">
- <bounds x="95.3333" y="481.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="95.3333" y="481.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp8" ref="reel_lamp_layer_5" state="0">
- <bounds x="98.6667" y="483.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="98.6667" y="483.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_0" state="0">
- <bounds x="82.0000" y="520.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="82.0000" y="520.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="85.3333" y="522.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="85.3333" y="522.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="88.6667" y="524.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="88.6667" y="524.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="92.0000" y="526.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="92.0000" y="526.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="95.3333" y="528.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="95.3333" y="528.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="98.6667" y="530.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="98.6667" y="530.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel1" ref="reel0" state="0">
- <bounds x="82" y="427" width="80" height="140">
- </bounds>
+ <bounds x="82" y="427" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="196" y="427" width="80" height="140">
- </bounds>
+ <bounds x="196" y="427" width="80" height="140"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_0" state="0">
- <bounds x="196.0000" y="427.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="196.0000" y="427.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_1" state="0">
- <bounds x="199.3333" y="428.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="199.3333" y="428.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_2" state="0">
- <bounds x="202.6667" y="430.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="202.6667" y="430.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_3" state="0">
- <bounds x="206.0000" y="432.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="206.0000" y="432.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_4" state="0">
- <bounds x="209.3333" y="434.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="209.3333" y="434.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp1" ref="reel_lamp_layer_5" state="0">
- <bounds x="212.6667" y="436.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="212.6667" y="436.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_0" state="0">
- <bounds x="196.0000" y="473.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="196.0000" y="473.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_1" state="0">
- <bounds x="199.3333" y="475.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="199.3333" y="475.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_2" state="0">
- <bounds x="202.6667" y="477.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="202.6667" y="477.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_3" state="0">
- <bounds x="206.0000" y="479.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="206.0000" y="479.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_4" state="0">
- <bounds x="209.3333" y="481.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="209.3333" y="481.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp9" ref="reel_lamp_layer_5" state="0">
- <bounds x="212.6667" y="483.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="212.6667" y="483.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_0" state="0">
- <bounds x="196.0000" y="520.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="196.0000" y="520.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="199.3333" y="522.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="199.3333" y="522.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="202.6667" y="524.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="202.6667" y="524.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="206.0000" y="526.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="206.0000" y="526.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="209.3333" y="528.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="209.3333" y="528.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="212.6667" y="530.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="212.6667" y="530.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel2" ref="reel1" state="0">
- <bounds x="196" y="427" width="80" height="140">
- </bounds>
+ <bounds x="196" y="427" width="80" height="140"/>
</element>
<element ref="reel_background">
- <bounds x="310" y="427" width="80" height="140">
- </bounds>
+ <bounds x="310" y="427" width="80" height="140"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_0" state="0">
- <bounds x="310.0000" y="427.0000" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="310.0000" y="427.0000" width="80.0000" height="46.6667"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_1" state="0">
- <bounds x="313.3333" y="428.9445" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="313.3333" y="428.9445" width="73.3333" height="42.7778"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_2" state="0">
- <bounds x="316.6667" y="430.8889" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="316.6667" y="430.8889" width="66.6667" height="38.8889"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_3" state="0">
- <bounds x="320.0000" y="432.8333" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="320.0000" y="432.8333" width="60.0000" height="35.0000"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_4" state="0">
- <bounds x="323.3333" y="434.7778" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="323.3333" y="434.7778" width="53.3333" height="31.1111"/>
</element>
<element name="lamp2" ref="reel_lamp_layer_5" state="0">
- <bounds x="326.6667" y="436.7222" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="326.6667" y="436.7222" width="46.6667" height="27.2222"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_0" state="0">
- <bounds x="310.0000" y="473.6667" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="310.0000" y="473.6667" width="80.0000" height="46.6667"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="313.3333" y="475.6111" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="313.3333" y="475.6111" width="73.3333" height="42.7778"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="316.6667" y="477.5555" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="316.6667" y="477.5555" width="66.6667" height="38.8889"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="320.0000" y="479.5000" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="320.0000" y="479.5000" width="60.0000" height="35.0000"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="323.3333" y="481.4444" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="323.3333" y="481.4444" width="53.3333" height="31.1111"/>
</element>
<element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="326.6667" y="483.3889" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="326.6667" y="483.3889" width="46.6667" height="27.2222"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_0" state="0">
- <bounds x="310.0000" y="520.3333" width="80.0000" height="46.6667">
- </bounds>
+ <bounds x="310.0000" y="520.3333" width="80.0000" height="46.6667"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="313.3333" y="522.2778" width="73.3333" height="42.7778">
- </bounds>
+ <bounds x="313.3333" y="522.2778" width="73.3333" height="42.7778"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="316.6667" y="524.2222" width="66.6667" height="38.8889">
- </bounds>
+ <bounds x="316.6667" y="524.2222" width="66.6667" height="38.8889"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="320.0000" y="526.1666" width="60.0000" height="35.0000">
- </bounds>
+ <bounds x="320.0000" y="526.1666" width="60.0000" height="35.0000"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="323.3333" y="528.1111" width="53.3333" height="31.1111">
- </bounds>
+ <bounds x="323.3333" y="528.1111" width="53.3333" height="31.1111"/>
</element>
<element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="326.6667" y="530.0555" width="46.6667" height="27.2222">
- </bounds>
+ <bounds x="326.6667" y="530.0555" width="46.6667" height="27.2222"/>
</element>
<element name="sreel3" ref="reel2" state="0">
- <bounds x="310" y="427" width="80" height="140">
- </bounds>
+ <bounds x="310" y="427" width="80" height="140"/>
</element>
<element name="lamp27" ref="lamp_27_1_border" state="0">
- <bounds x="32" y="566" width="22" height="8">
- </bounds>
+ <bounds x="32" y="566" width="22" height="8"/>
</element>
<element name="lamp27" ref="lamp_27_1" state="0">
- <bounds x="34" y="568" width="18" height="4">
- </bounds>
+ <bounds x="34" y="568" width="18" height="4"/>
</element>
<element name="lamp28" ref="lamp_28_1_border" state="0">
- <bounds x="31" y="543" width="24" height="9">
- </bounds>
+ <bounds x="31" y="543" width="24" height="9"/>
</element>
<element name="lamp28" ref="lamp_28_1" state="0">
- <bounds x="33" y="545" width="20" height="5">
- </bounds>
+ <bounds x="33" y="545" width="20" height="5"/>
</element>
<element name="lamp29" ref="lamp_29_1_border" state="0">
- <bounds x="30" y="519" width="26" height="10">
- </bounds>
+ <bounds x="30" y="519" width="26" height="10"/>
</element>
<element name="lamp29" ref="lamp_29_1" state="0">
- <bounds x="32" y="521" width="22" height="6">
- </bounds>
+ <bounds x="32" y="521" width="22" height="6"/>
</element>
<element name="lamp30" ref="lamp_30_1_border" state="0">
- <bounds x="29" y="494" width="28" height="11">
- </bounds>
+ <bounds x="29" y="494" width="28" height="11"/>
</element>
<element name="lamp30" ref="lamp_30_1" state="0">
- <bounds x="31" y="496" width="24" height="7">
- </bounds>
+ <bounds x="31" y="496" width="24" height="7"/>
</element>
<element name="lamp31" ref="lamp_31_1_border" state="0">
- <bounds x="28" y="468" width="30" height="12">
- </bounds>
+ <bounds x="28" y="468" width="30" height="12"/>
</element>
<element name="lamp31" ref="lamp_31_1" state="0">
- <bounds x="30" y="470" width="26" height="8">
- </bounds>
+ <bounds x="30" y="470" width="26" height="8"/>
</element>
<element name="lamp39" ref="lamp_39_1_border" state="0">
- <bounds x="27" y="441" width="32" height="13">
- </bounds>
+ <bounds x="27" y="441" width="32" height="13"/>
</element>
<element name="lamp39" ref="lamp_39_1" state="0">
- <bounds x="29" y="443" width="28" height="9">
- </bounds>
+ <bounds x="29" y="443" width="28" height="9"/>
</element>
<element name="lamp27" ref="lamp_27_2_border" state="0">
- <bounds x="27" y="552" width="32" height="17">
- </bounds>
+ <bounds x="27" y="552" width="32" height="17"/>
</element>
<element name="lamp27" ref="lamp_27_2" state="0">
- <bounds x="29" y="554" width="28" height="13">
- </bounds>
+ <bounds x="29" y="554" width="28" height="13"/>
</element>
<element name="lamp28" ref="lamp_28_2_border" state="0">
- <bounds x="25" y="529" width="36" height="17">
- </bounds>
+ <bounds x="25" y="529" width="36" height="17"/>
</element>
<element name="lamp28" ref="lamp_28_2" state="0">
- <bounds x="27" y="531" width="32" height="13">
- </bounds>
+ <bounds x="27" y="531" width="32" height="13"/>
</element>
<element name="lamp29" ref="lamp_29_2_border" state="0">
- <bounds x="23" y="505" width="40" height="17">
- </bounds>
+ <bounds x="23" y="505" width="40" height="17"/>
</element>
<element name="lamp29" ref="lamp_29_2" state="0">
- <bounds x="25" y="507" width="36" height="13">
- </bounds>
+ <bounds x="25" y="507" width="36" height="13"/>
</element>
<element name="lamp30" ref="lamp_30_2_border" state="0">
- <bounds x="21" y="480" width="44" height="17">
- </bounds>
+ <bounds x="21" y="480" width="44" height="17"/>
</element>
<element name="lamp30" ref="lamp_30_2" state="0">
- <bounds x="23" y="482" width="40" height="13">
- </bounds>
+ <bounds x="23" y="482" width="40" height="13"/>
</element>
<element name="lamp31" ref="lamp_31_2_border" state="0">
- <bounds x="19" y="454" width="48" height="17">
- </bounds>
+ <bounds x="19" y="454" width="48" height="17"/>
</element>
<element name="lamp31" ref="lamp_31_2" state="0">
- <bounds x="21" y="456" width="44" height="13">
- </bounds>
+ <bounds x="21" y="456" width="44" height="13"/>
</element>
<element name="lamp39" ref="lamp_39_2_border" state="0">
- <bounds x="17" y="427" width="52" height="17">
- </bounds>
+ <bounds x="17" y="427" width="52" height="17"/>
</element>
<element name="lamp39" ref="lamp_39_2" state="0">
- <bounds x="19" y="429" width="48" height="13">
- </bounds>
+ <bounds x="19" y="429" width="48" height="13"/>
</element>
<element name="lamp47" ref="lamp_47_1_border" state="0">
- <bounds x="383" y="374" width="35" height="32">
- </bounds>
+ <bounds x="383" y="374" width="35" height="32"/>
</element>
<element name="lamp47" ref="lamp_47_1" state="0">
- <bounds x="385" y="376" width="31" height="28">
- </bounds>
+ <bounds x="385" y="376" width="31" height="28"/>
</element>
<element name="lamp47" ref="lamp_47_2_border" state="0">
- <bounds x="383" y="403" width="35" height="13">
- </bounds>
+ <bounds x="383" y="403" width="35" height="13"/>
</element>
<element name="lamp47" ref="lamp_47_2" state="0">
- <bounds x="385" y="405" width="31" height="9">
- </bounds>
+ <bounds x="385" y="405" width="31" height="9"/>
</element>
<element name="lamp46" ref="lamp_46_1_border" state="0">
- <bounds x="342" y="374" width="35" height="32">
- </bounds>
+ <bounds x="342" y="374" width="35" height="32"/>
</element>
<element name="lamp46" ref="lamp_46_1" state="0">
- <bounds x="344" y="376" width="31" height="28">
- </bounds>
+ <bounds x="344" y="376" width="31" height="28"/>
</element>
<element name="lamp46" ref="lamp_46_2_border" state="0">
- <bounds x="342" y="403" width="35" height="13">
- </bounds>
+ <bounds x="342" y="403" width="35" height="13"/>
</element>
<element name="lamp46" ref="lamp_46_2" state="0">
- <bounds x="344" y="405" width="31" height="9">
- </bounds>
+ <bounds x="344" y="405" width="31" height="9"/>
</element>
<element name="lamp45" ref="lamp_45_1_border" state="0">
- <bounds x="301" y="374" width="35" height="32">
- </bounds>
+ <bounds x="301" y="374" width="35" height="32"/>
</element>
<element name="lamp45" ref="lamp_45_1" state="0">
- <bounds x="303" y="376" width="31" height="28">
- </bounds>
+ <bounds x="303" y="376" width="31" height="28"/>
</element>
<element name="lamp45" ref="lamp_45_2_border" state="0">
- <bounds x="301" y="403" width="35" height="13">
- </bounds>
+ <bounds x="301" y="403" width="35" height="13"/>
</element>
<element name="lamp45" ref="lamp_45_2" state="0">
- <bounds x="303" y="405" width="31" height="9">
- </bounds>
+ <bounds x="303" y="405" width="31" height="9"/>
</element>
<element name="lamp44" ref="lamp_44_1_border" state="0">
- <bounds x="260" y="374" width="35" height="32">
- </bounds>
+ <bounds x="260" y="374" width="35" height="32"/>
</element>
<element name="lamp44" ref="lamp_44_1" state="0">
- <bounds x="262" y="376" width="31" height="28">
- </bounds>
+ <bounds x="262" y="376" width="31" height="28"/>
</element>
<element name="lamp44" ref="lamp_44_2_border" state="0">
- <bounds x="260" y="403" width="35" height="13">
- </bounds>
+ <bounds x="260" y="403" width="35" height="13"/>
</element>
<element name="lamp44" ref="lamp_44_2" state="0">
- <bounds x="262" y="405" width="31" height="9">
- </bounds>
+ <bounds x="262" y="405" width="31" height="9"/>
</element>
<element name="lamp43" ref="lamp_43_1_border" state="0">
- <bounds x="219" y="374" width="35" height="32">
- </bounds>
+ <bounds x="219" y="374" width="35" height="32"/>
</element>
<element name="lamp43" ref="lamp_43_1" state="0">
- <bounds x="221" y="376" width="31" height="28">
- </bounds>
+ <bounds x="221" y="376" width="31" height="28"/>
</element>
<element name="lamp43" ref="lamp_43_2_border" state="0">
- <bounds x="219" y="403" width="35" height="13">
- </bounds>
+ <bounds x="219" y="403" width="35" height="13"/>
</element>
<element name="lamp43" ref="lamp_43_2" state="0">
- <bounds x="221" y="405" width="31" height="9">
- </bounds>
+ <bounds x="221" y="405" width="31" height="9"/>
</element>
<element name="lamp42" ref="lamp_42_1_border" state="0">
- <bounds x="178" y="374" width="35" height="32">
- </bounds>
+ <bounds x="178" y="374" width="35" height="32"/>
</element>
<element name="lamp42" ref="lamp_42_1" state="0">
- <bounds x="180" y="376" width="31" height="28">
- </bounds>
+ <bounds x="180" y="376" width="31" height="28"/>
</element>
<element name="lamp42" ref="lamp_42_2_border" state="0">
- <bounds x="178" y="403" width="35" height="13">
- </bounds>
+ <bounds x="178" y="403" width="35" height="13"/>
</element>
<element name="lamp42" ref="lamp_42_2" state="0">
- <bounds x="180" y="405" width="31" height="9">
- </bounds>
+ <bounds x="180" y="405" width="31" height="9"/>
</element>
<element name="lamp35" ref="lamp_35_1_border" state="0">
- <bounds x="137" y="374" width="35" height="32">
- </bounds>
+ <bounds x="137" y="374" width="35" height="32"/>
</element>
<element name="lamp35" ref="lamp_35_1" state="0">
- <bounds x="139" y="376" width="31" height="28">
- </bounds>
+ <bounds x="139" y="376" width="31" height="28"/>
</element>
<element name="lamp35" ref="lamp_35_2_border" state="0">
- <bounds x="137" y="403" width="35" height="13">
- </bounds>
+ <bounds x="137" y="403" width="35" height="13"/>
</element>
<element name="lamp35" ref="lamp_35_2" state="0">
- <bounds x="139" y="405" width="31" height="9">
- </bounds>
+ <bounds x="139" y="405" width="31" height="9"/>
</element>
<element name="lamp36" ref="lamp_36_1_border" state="0">
- <bounds x="96" y="374" width="35" height="32">
- </bounds>
+ <bounds x="96" y="374" width="35" height="32"/>
</element>
<element name="lamp36" ref="lamp_36_1" state="0">
- <bounds x="98" y="376" width="31" height="28">
- </bounds>
+ <bounds x="98" y="376" width="31" height="28"/>
</element>
<element name="lamp36" ref="lamp_36_2_border" state="0">
- <bounds x="96" y="403" width="35" height="13">
- </bounds>
+ <bounds x="96" y="403" width="35" height="13"/>
</element>
<element name="lamp36" ref="lamp_36_2" state="0">
- <bounds x="98" y="405" width="31" height="9">
- </bounds>
+ <bounds x="98" y="405" width="31" height="9"/>
</element>
<element name="lamp37" ref="lamp_37_1_border" state="0">
- <bounds x="55" y="374" width="35" height="32">
- </bounds>
+ <bounds x="55" y="374" width="35" height="32"/>
</element>
<element name="lamp37" ref="lamp_37_1" state="0">
- <bounds x="57" y="376" width="31" height="28">
- </bounds>
+ <bounds x="57" y="376" width="31" height="28"/>
</element>
<element name="lamp37" ref="lamp_37_2_border" state="0">
- <bounds x="55" y="403" width="35" height="13">
- </bounds>
+ <bounds x="55" y="403" width="35" height="13"/>
</element>
<element name="lamp37" ref="lamp_37_2" state="0">
- <bounds x="57" y="405" width="31" height="9">
- </bounds>
+ <bounds x="57" y="405" width="31" height="9"/>
</element>
<element name="lamp3" ref="lamp_3_1_border" state="0">
- <bounds x="522" y="477" width="34" height="42">
- </bounds>
+ <bounds x="522" y="477" width="34" height="42"/>
</element>
<element name="lamp3" ref="lamp_3_1" state="0">
- <bounds x="524" y="479" width="30" height="38">
- </bounds>
+ <bounds x="524" y="479" width="30" height="38"/>
</element>
<element name="lamp4" ref="lamp_4_1_border" state="0">
- <bounds x="482" y="477" width="34" height="42">
- </bounds>
+ <bounds x="482" y="477" width="34" height="42"/>
</element>
<element name="lamp4" ref="lamp_4_1" state="0">
- <bounds x="484" y="479" width="30" height="38">
- </bounds>
+ <bounds x="484" y="479" width="30" height="38"/>
</element>
<element name="lamp5" ref="lamp_5_1_border" state="0">
- <bounds x="442" y="477" width="34" height="42">
- </bounds>
+ <bounds x="442" y="477" width="34" height="42"/>
</element>
<element name="lamp5" ref="lamp_5_1" state="0">
- <bounds x="444" y="479" width="30" height="38">
- </bounds>
+ <bounds x="444" y="479" width="30" height="38"/>
</element>
<element name="lamp38" ref="lamp_38_1_border" state="0">
- <bounds x="14" y="403" width="35" height="13">
- </bounds>
+ <bounds x="14" y="403" width="35" height="13"/>
</element>
<element name="lamp38" ref="lamp_38_1" state="0">
- <bounds x="16" y="405" width="31" height="9">
- </bounds>
+ <bounds x="16" y="405" width="31" height="9"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
- <bounds x="425" y="535" width="122" height="57">
- </bounds>
+ <bounds x="425" y="535" width="122" height="57"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
- <bounds x="427" y="537" width="118" height="53">
- </bounds>
+ <bounds x="427" y="537" width="118" height="53"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
- <bounds x="279" y="570" width="70" height="30">
- </bounds>
+ <bounds x="279" y="570" width="70" height="30"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
- <bounds x="281" y="572" width="66" height="26">
- </bounds>
+ <bounds x="281" y="572" width="66" height="26"/>
</element>
<element name="lamp22" ref="lamp_22_1_border" state="0">
- <bounds x="211" y="570" width="70" height="30">
- </bounds>
+ <bounds x="211" y="570" width="70" height="30"/>
</element>
<element name="lamp22" ref="lamp_22_1" state="0">
- <bounds x="213" y="572" width="66" height="26">
- </bounds>
+ <bounds x="213" y="572" width="66" height="26"/>
</element>
<element name="lamp21" ref="lamp_21_1_border" state="0">
- <bounds x="143" y="570" width="70" height="30">
- </bounds>
+ <bounds x="143" y="570" width="70" height="30"/>
</element>
<element name="lamp21" ref="lamp_21_1" state="0">
- <bounds x="145" y="572" width="66" height="26">
- </bounds>
+ <bounds x="145" y="572" width="66" height="26"/>
</element>
<element name="lamp20" ref="lamp_20_1_border" state="0">
- <bounds x="75" y="570" width="70" height="30">
- </bounds>
+ <bounds x="75" y="570" width="70" height="30"/>
</element>
<element name="lamp20" ref="lamp_20_1" state="0">
- <bounds x="77" y="572" width="66" height="26">
- </bounds>
+ <bounds x="77" y="572" width="66" height="26"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
- <bounds x="347" y="570" width="70" height="30">
- </bounds>
+ <bounds x="347" y="570" width="70" height="30"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
- <bounds x="349" y="572" width="66" height="26">
- </bounds>
+ <bounds x="349" y="572" width="66" height="26"/>
</element>
<element name="lamp68" ref="lamp_68_1_border" state="0">
- <bounds x="202" y="8" width="162" height="56">
- </bounds>
+ <bounds x="202" y="8" width="162" height="56"/>
</element>
<element name="lamp68" ref="lamp_68_1" state="0">
- <bounds x="204" y="10" width="158" height="52">
- </bounds>
+ <bounds x="204" y="10" width="158" height="52"/>
</element>
<element name="lamp82" ref="lamp_82_1_border" state="0">
- <bounds x="202" y="132" width="162" height="56">
- </bounds>
+ <bounds x="202" y="132" width="162" height="56"/>
</element>
<element name="lamp82" ref="lamp_82_1" state="0">
- <bounds x="204" y="134" width="158" height="52">
- </bounds>
+ <bounds x="204" y="134" width="158" height="52"/>
</element>
<element name="lamp38" ref="lamp_38_2_border" state="0">
- <bounds x="14" y="374" width="35" height="32">
- </bounds>
+ <bounds x="14" y="374" width="35" height="32"/>
</element>
<element name="lamp38" ref="lamp_38_2" state="0">
- <bounds x="16" y="376" width="31" height="28">
- </bounds>
+ <bounds x="16" y="376" width="31" height="28"/>
</element>
<element name="lamp7" ref="lamp_7_1_border" state="0">
- <bounds x="426" y="442" width="106" height="24">
- </bounds>
+ <bounds x="426" y="442" width="106" height="24"/>
</element>
<element name="lamp7" ref="lamp_7_1" state="0">
- <bounds x="428" y="444" width="102" height="20">
- </bounds>
+ <bounds x="428" y="444" width="102" height="20"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
- <bounds x="402" y="477" width="34" height="42">
- </bounds>
+ <bounds x="402" y="477" width="34" height="42"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
- <bounds x="404" y="479" width="30" height="38">
- </bounds>
+ <bounds x="404" y="479" width="30" height="38"/>
</element>
<element name="lamp84" ref="lamp_84_1_border" state="0">
- <bounds x="395" y="132" width="162" height="56">
- </bounds>
+ <bounds x="395" y="132" width="162" height="56"/>
</element>
<element name="lamp84" ref="lamp_84_1" state="0">
- <bounds x="397" y="134" width="158" height="52">
- </bounds>
+ <bounds x="397" y="134" width="158" height="52"/>
</element>
<element name="lamp80" ref="lamp_80_1_border" state="0">
- <bounds x="6" y="132" width="162" height="56">
- </bounds>
+ <bounds x="6" y="132" width="162" height="56"/>
</element>
<element name="lamp80" ref="lamp_80_1" state="0">
- <bounds x="8" y="134" width="158" height="52">
- </bounds>
+ <bounds x="8" y="134" width="158" height="52"/>
</element>
<element name="lamp112" ref="lamp_112_1_border" state="0">
- <bounds x="3" y="256" width="162" height="56">
- </bounds>
+ <bounds x="3" y="256" width="162" height="56"/>
</element>
<element name="lamp112" ref="lamp_112_1" state="0">
- <bounds x="5" y="258" width="158" height="52">
- </bounds>
+ <bounds x="5" y="258" width="158" height="52"/>
</element>
<element name="lamp114" ref="lamp_114_1_border" state="0">
- <bounds x="399" y="256" width="162" height="56">
- </bounds>
+ <bounds x="399" y="256" width="162" height="56"/>
</element>
<element name="lamp114" ref="lamp_114_1" state="0">
- <bounds x="401" y="258" width="158" height="52">
- </bounds>
+ <bounds x="401" y="258" width="158" height="52"/>
</element>
<element name="lamp96" ref="lamp_96_1_border" state="0">
- <bounds x="45" y="194" width="162" height="56">
- </bounds>
+ <bounds x="45" y="194" width="162" height="56"/>
</element>
<element name="lamp96" ref="lamp_96_1" state="0">
- <bounds x="47" y="196" width="158" height="52">
- </bounds>
+ <bounds x="47" y="196" width="158" height="52"/>
</element>
<element name="lamp64" ref="lamp_64_1_border" state="0">
- <bounds x="73" y="70" width="162" height="56">
- </bounds>
+ <bounds x="73" y="70" width="162" height="56"/>
</element>
<element name="lamp64" ref="lamp_64_1" state="0">
- <bounds x="75" y="72" width="158" height="52">
- </bounds>
+ <bounds x="75" y="72" width="158" height="52"/>
</element>
<element name="lamp98" ref="lamp_98_1_border" state="0">
- <bounds x="357" y="194" width="162" height="56">
- </bounds>
+ <bounds x="357" y="194" width="162" height="56"/>
</element>
<element name="lamp98" ref="lamp_98_1" state="0">
- <bounds x="359" y="196" width="158" height="52">
- </bounds>
+ <bounds x="359" y="196" width="158" height="52"/>
</element>
<element name="lamp66" ref="lamp_66_1_border" state="0">
- <bounds x="329" y="70" width="162" height="56">
- </bounds>
+ <bounds x="329" y="70" width="162" height="56"/>
</element>
<element name="lamp66" ref="lamp_66_1" state="0">
- <bounds x="331" y="72" width="158" height="52">
- </bounds>
+ <bounds x="331" y="72" width="158" height="52"/>
</element>
<element name="lamp55" ref="lamp_55_1_border" state="0">
- <bounds x="226" y="204" width="112" height="72">
- </bounds>
+ <bounds x="226" y="204" width="112" height="72"/>
</element>
<element name="lamp55" ref="lamp_55_1" state="0">
- <bounds x="228" y="206" width="108" height="68">
- </bounds>
+ <bounds x="228" y="206" width="108" height="68"/>
</element>
<element name="lamp41" ref="colour_button_84_border" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="511" y="606" width="52" height="39">
- </bounds>
+ <bounds x="511" y="606" width="52" height="39"/>
</element>
<element name="lamp41" ref="colour_button_84" state="0" inputtag="BLACK2" inputmask="0x80">
- <bounds x="513" y="608" width="48" height="35">
- </bounds>
+ <bounds x="513" y="608" width="48" height="35"/>
</element>
<element name="lamp40" ref="colour_button_85_border" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="454" y="606" width="52" height="39">
- </bounds>
+ <bounds x="454" y="606" width="52" height="39"/>
</element>
<element name="lamp40" ref="colour_button_85" state="0" inputtag="BLACK2" inputmask="0x40">
- <bounds x="456" y="608" width="48" height="35">
- </bounds>
+ <bounds x="456" y="608" width="48" height="35"/>
</element>
<element name="lamp34" ref="colour_button_86_border" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="395" y="606" width="52" height="39">
- </bounds>
+ <bounds x="395" y="606" width="52" height="39"/>
</element>
<element name="lamp34" ref="colour_button_86" state="0" inputtag="BLACK2" inputmask="0x20">
- <bounds x="397" y="608" width="48" height="35">
- </bounds>
+ <bounds x="397" y="608" width="48" height="35"/>
</element>
<element name="lamp33" ref="colour_button_87_border" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="324" y="606" width="52" height="39">
- </bounds>
+ <bounds x="324" y="606" width="52" height="39"/>
</element>
<element name="lamp33" ref="colour_button_87" state="0" inputtag="BLACK2" inputmask="0x10">
- <bounds x="326" y="608" width="48" height="35">
- </bounds>
+ <bounds x="326" y="608" width="48" height="35"/>
</element>
<element name="lamp32" ref="colour_button_88_border" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="210" y="606" width="52" height="39">
- </bounds>
+ <bounds x="210" y="606" width="52" height="39"/>
</element>
<element name="lamp32" ref="colour_button_88" state="0" inputtag="BLACK2" inputmask="0x08">
- <bounds x="212" y="608" width="48" height="35">
- </bounds>
+ <bounds x="212" y="608" width="48" height="35"/>
</element>
<element name="lamp26" ref="colour_button_89_border" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="96" y="606" width="52" height="39">
- </bounds>
+ <bounds x="96" y="606" width="52" height="39"/>
</element>
<element name="lamp26" ref="colour_button_89" state="0" inputtag="BLACK2" inputmask="0x04">
- <bounds x="98" y="608" width="48" height="35">
- </bounds>
+ <bounds x="98" y="608" width="48" height="35"/>
</element>
<element name="lamp25" ref="colour_button_90_border" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="13" y="606" width="52" height="39">
- </bounds>
+ <bounds x="13" y="606" width="52" height="39"/>
</element>
<element name="lamp25" ref="colour_button_90" state="0" inputtag="BLACK2" inputmask="0x02">
- <bounds x="15" y="608" width="48" height="35">
- </bounds>
+ <bounds x="15" y="608" width="48" height="35"/>
</element>
<element name="lamp56" ref="colour_button_91_border" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="455" y="375" width="47" height="62">
- </bounds>
+ <bounds x="455" y="375" width="47" height="62"/>
</element>
<element name="lamp56" ref="colour_button_91" state="0" inputtag="AUX2" inputmask="0x80">
- <bounds x="457" y="377" width="43" height="58">
- </bounds>
+ <bounds x="457" y="377" width="43" height="58"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="189" y="307" width="45" height="60">
- </bounds>
+ <bounds x="189" y="307" width="45" height="60"/>
</element>
<element name="digit4" ref="led_digit_red">
- <bounds x="189" y="307" width="45" height="60">
- </bounds>
+ <bounds x="189" y="307" width="45" height="60"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="189" y="307" width="45" height="60">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="189" y="307" width="45" height="60"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="234" y="307" width="45" height="60">
- </bounds>
+ <bounds x="234" y="307" width="45" height="60"/>
</element>
<element name="digit5" ref="led_digit_red">
- <bounds x="234" y="307" width="45" height="60">
- </bounds>
+ <bounds x="234" y="307" width="45" height="60"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="234" y="307" width="45" height="60">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="234" y="307" width="45" height="60"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="279" y="307" width="45" height="60">
- </bounds>
+ <bounds x="279" y="307" width="45" height="60"/>
</element>
<element name="digit6" ref="led_digit_red">
- <bounds x="279" y="307" width="45" height="60">
- </bounds>
+ <bounds x="279" y="307" width="45" height="60"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="279" y="307" width="45" height="60">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="279" y="307" width="45" height="60"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="324" y="307" width="45" height="60">
- </bounds>
+ <bounds x="324" y="307" width="45" height="60"/>
</element>
<element name="digit7" ref="led_digit_red">
- <bounds x="324" y="307" width="45" height="60">
- </bounds>
+ <bounds x="324" y="307" width="45" height="60"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="324" y="307" width="45" height="60">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="324" y="307" width="45" height="60"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="473" y="330" width="22" height="28">
- </bounds>
+ <bounds x="473" y="330" width="22" height="28"/>
</element>
<element name="digit3" ref="led_digit_red">
- <bounds x="473" y="330" width="22" height="28">
- </bounds>
+ <bounds x="473" y="330" width="22" height="28"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="473" y="330" width="22" height="28">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="473" y="330" width="22" height="28"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="429" y="330" width="22" height="28">
- </bounds>
+ <bounds x="429" y="330" width="22" height="28"/>
</element>
<element name="digit1" ref="led_digit_red">
- <bounds x="429" y="330" width="22" height="28">
- </bounds>
+ <bounds x="429" y="330" width="22" height="28"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="429" y="330" width="22" height="28">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="429" y="330" width="22" height="28"/>
+ <color alpha="0.1"/>
</element>
<element ref="led_digit_rect_black">
- <bounds x="451" y="330" width="22" height="28">
- </bounds>
+ <bounds x="451" y="330" width="22" height="28"/>
</element>
<element name="digit2" ref="led_digit_red">
- <bounds x="451" y="330" width="22" height="28">
- </bounds>
+ <bounds x="451" y="330" width="22" height="28"/>
</element>
<element ref="led_digit_rect_red">
- <bounds x="451" y="330" width="22" height="28">
- </bounds>
- <color alpha="0.1">
- </color>
+ <bounds x="451" y="330" width="22" height="28"/>
+ <color alpha="0.1"/>
</element>
<element name="label38" ref="label_38">
- <bounds x="235" y="271" width="89" height="45">
- </bounds>
+ <bounds x="235" y="271" width="89" height="45"/>
</element>
<element name="label43" ref="label_43">
- <bounds x="146" y="291" width="51" height="90">
- </bounds>
+ <bounds x="146" y="291" width="51" height="90"/>
</element>
<element name="label71" ref="label_71">
- <bounds x="638" y="211" width="75" height="51">
- </bounds>
+ <bounds x="638" y="211" width="75" height="51"/>
</element>
<element name="label72" ref="label_72">
- <bounds x="638" y="254" width="52" height="51">
- </bounds>
+ <bounds x="638" y="254" width="52" height="51"/>
</element>
<element name="label73" ref="label_73">
- <bounds x="638" y="298" width="52" height="51">
- </bounds>
+ <bounds x="638" y="298" width="52" height="51"/>
</element>
<element name="label74" ref="label_74">
- <bounds x="638" y="342" width="52" height="51">
- </bounds>
+ <bounds x="638" y="342" width="52" height="51"/>
</element>
<element name="label75" ref="label_75">
- <bounds x="638" y="386" width="52" height="51">
- </bounds>
+ <bounds x="638" y="386" width="52" height="51"/>
</element>
<element name="label76" ref="label_76">
- <bounds x="638" y="430" width="52" height="51">
- </bounds>
+ <bounds x="638" y="430" width="52" height="51"/>
</element>
<element name="label80" ref="label_80">
- <bounds x="495" y="337" width="51" height="16">
- </bounds>
+ <bounds x="495" y="337" width="51" height="16"/>
</element>
<element name="label81" ref="label_81">
- <bounds x="633" y="75" width="27" height="16">
- </bounds>
+ <bounds x="633" y="75" width="27" height="16"/>
</element>
<element name="label82" ref="label_82">
- <bounds x="662" y="633" width="51" height="16">
- </bounds>
+ <bounds x="662" y="633" width="51" height="16"/>
</element>
</view>
</mamelayout>
diff --git a/src/mame/layout/mpu3.lay b/src/mame/layout/mpu3.lay
index 4a752a5b54f..d03015dfd77 100644
--- a/src/mame/layout/mpu3.lay
+++ b/src/mame/layout/mpu3.lay
@@ -36,9 +36,9 @@ license:CC0
<param name="x" start="0" increment="9" />
<element name="vfd~n~" ref="vfd0" state="0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
- <bounds x="~x~" y="0" width="9" height="17"/>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
+ <bounds x="~x~" y="0" width="9" height="17" />
</element>
</repeat>
</group>
@@ -73,7 +73,7 @@ license:CC0
<param name="n" start="~s~" increment="1" />
<param name="y" start="0" increment="8" />
<element name="lamp~n~" ref="matrixlamp" state="0" blend="add">
- <bounds x="~x~" y="~y~" width="7" height="7"/>
+ <bounds x="~x~" y="~y~" width="7" height="7" />
</element>
</repeat>
</repeat>
diff --git a/src/mame/layout/mpu4.lay b/src/mame/layout/mpu4.lay
index 43662377ecf..3c3aa524460 100644
--- a/src/mame/layout/mpu4.lay
+++ b/src/mame/layout/mpu4.lay
@@ -36,9 +36,9 @@ license:CC0
<param name="x" start="0" increment="9" />
<element name="vfd~n~" ref="vfd0" state="0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
- <bounds x="~x~" y="0" width="9" height="17"/>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
+ <bounds x="~x~" y="0" width="9" height="17" />
</element>
</repeat>
</group>
@@ -64,7 +64,7 @@ license:CC0
<param name="n" start="~s~" increment="1" />
<param name="y" start="0" increment="8" />
<element name="lamp~n~" ref="matrixlamp" state="0" blend="add">
- <bounds x="~x~" y="~y~" width="7" height="7"/>
+ <bounds x="~x~" y="~y~" width="7" height="7" />
</element>
</repeat>
</repeat>
@@ -72,7 +72,7 @@ license:CC0
<param name="n" start="0" increment="1" />
<param name="x" start="300" increment="8" />
<element name="digit~n~" ref="digit" state="0">
- <bounds x="~x~" y="200" width="8" height="10"/>
+ <bounds x="~x~" y="200" width="8" height="10" />
</element>
</repeat>
<group ref="vfd">
diff --git a/src/mame/layout/mpu4ext.lay b/src/mame/layout/mpu4ext.lay
index c79c9776a93..f13470dbaef 100644
--- a/src/mame/layout/mpu4ext.lay
+++ b/src/mame/layout/mpu4ext.lay
@@ -36,9 +36,9 @@ license:CC0
<param name="x" start="0" increment="9" />
<element name="vfd~n~" ref="vfd0" state="0">
<animate name="vfdduty0" />
- <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"></color>
- <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0"></color>
- <bounds x="~x~" y="0" width="9" height="17"/>
+ <color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0" />
+ <color state="31" red="0.00" green="0.6" blue="1.00" alpha="1.0" />
+ <bounds x="~x~" y="0" width="9" height="17" />
</element>
</repeat>
</group>
@@ -48,14 +48,14 @@ license:CC0
<param name="n" start="1" increment="1" />
<param name="x" start="10" increment="50" />
<element name="reel~n~" ref="Steppers" state="0">
- <bounds x="~x~" y="300" width="50" height="50"/>
+ <bounds x="~x~" y="300" width="50" height="50" />
</element>
</repeat>
<element name="reel5" ref="Steppers" state="0">
- <bounds x="220" y="300" width="50" height="50"/>
+ <bounds x="220" y="300" width="50" height="50" />
</element>
<element name="reel6" ref="Steppers" state="0">
- <bounds x="280" y="300" width="50" height="50"/>
+ <bounds x="280" y="300" width="50" height="50" />
</element>
<repeat count="28">
<param name="s" start="0" increment="8" />
@@ -64,12 +64,12 @@ license:CC0
<param name="n" start="~s~" increment="1" />
<param name="y" start="0" increment="8" />
<element name="lamp~n~" ref="matrixlamp" state="0" blend="add">
- <bounds x="~x~" y="~y~" width="7" height="7"/>
+ <bounds x="~x~" y="~y~" width="7" height="7" />
</element>
</repeat>
</repeat>
<element name="lamp224" ref="matrixlamp" state="0" blend="add">
- <bounds x="224" y="0" width="7" height="7"/>
+ <bounds x="224" y="0" width="7" height="7" />
</element>
<repeat count="5">
<param name="s" start="0" increment="8" />
@@ -78,7 +78,7 @@ license:CC0
<param name="n" start="~s~" increment="1" />
<param name="x" start="300" increment="8" />
<element name="digit~n~" ref="digit" state="0">
- <bounds x="~x~" y="~y~" width="8" height="10"/>
+ <bounds x="~x~" y="~y~" width="8" height="10" />
</element>
</repeat>
</repeat>
diff --git a/src/mame/layout/sc1_vfd.lay b/src/mame/layout/sc1_vfd.lay
index 22791c2ef90..877d2a83dcf 100644
--- a/src/mame/layout/sc1_vfd.lay
+++ b/src/mame/layout/sc1_vfd.lay
@@ -185,38 +185,36 @@ license:CC0
<param name="i" start="0" increment="1" />
<param name="x" start="0" increment="9" />
<element name="vfdblank~i~" ref="vfd0">
- <color red="0.14" green="0.14" blue="0.14"></color>
- <bounds x="~x~" y="280" width="9" height="17">
- </bounds>
+ <color red="0.14" green="0.14" blue="0.14" />
+ <bounds x="~x~" y="280" width="9" height="17" />
</element>
<element name="vfd~i~" ref="vfd0">
<animate name="vfdduty0" />
- <color red="0.00" green="1.00" blue="1.00"></color>
- <bounds x="~x~" y="280" width="9" height="17">
- </bounds>
+ <color red="0.00" green="1.00" blue="1.00" />
+ <bounds x="~x~" y="280" width="9" height="17" />
</element>
</repeat>
</group>
<view name="VFD, Reels and Lamp Matrix">
<element name="reel1" ref="Steppers" state="0">
- <bounds x="10" y="320" width="50" height="50"/>
+ <bounds x="10" y="320" width="50" height="50" />
</element>
<element name="reel2" ref="Steppers" state="0">
- <bounds x="60" y="320" width="50" height="50"/>
+ <bounds x="60" y="320" width="50" height="50" />
</element>
<element name="reel3" ref="Steppers" state="0">
- <bounds x="110" y="320" width="50" height="50"/>
+ <bounds x="110" y="320" width="50" height="50" />
</element>
<element name="reel4" ref="Steppers" state="0">
- <bounds x="160" y="320" width="50" height="50"/>
+ <bounds x="160" y="320" width="50" height="50" />
</element>
<element name="reel5" ref="Steppers" state="0">
- <bounds x="220" y="320" width="50" height="50"/>
+ <bounds x="220" y="320" width="50" height="50" />
</element>
<element name="reel6" ref="Steppers" state="0">
- <bounds x="280" y="320" width="50" height="50"/>
+ <bounds x="280" y="320" width="50" height="50" />
</element>
<repeat count="16">
diff --git a/src/mame/layout/sc2_vfd.lay b/src/mame/layout/sc2_vfd.lay
index 07882400255..3d0a75b566a 100644
--- a/src/mame/layout/sc2_vfd.lay
+++ b/src/mame/layout/sc2_vfd.lay
@@ -178,16 +178,14 @@ license:CC0
<param name="i" start="0" increment="1" />
<param name="x" start="0" increment="9" />
<element name="vfdblank~i~" ref="vfd0">
- <color red="0.14" green="0.14" blue="0.14"></color>
- <bounds x="~x~" y="280" width="9" height="14">
- </bounds>
+ <color red="0.14" green="0.14" blue="0.14" />
+ <bounds x="~x~" y="280" width="9" height="14" />
</element>
<element name="vfd~i~" ref="vfd0">
<animate name="vfdduty0" />
- <color red="0.00" green="1.00" blue="1.00"></color>
- <bounds x="~x~" y="280" width="9" height="14">
- </bounds>
+ <color red="0.00" green="1.00" blue="1.00" />
+ <bounds x="~x~" y="280" width="9" height="14" />
</element>
</repeat>
</group>
@@ -200,7 +198,7 @@ license:CC0
<param name="n" start="~s~" increment="1" />
<param name="y" start="0" increment="8" />
<element name="lamp~n~" ref="matrixlamp" state="0" blend="add">
- <bounds x="~x~" y="~y~" width="7" height="7"/>
+ <bounds x="~x~" y="~y~" width="7" height="7" />
</element>
</repeat>
</repeat>