// license:GPL-2.0+
// copyright-holders:Norbert Kehrer
/***************************************************************************
Dambusters
(c) 1981 South West Research Ltd. (Bristol, UK)
Reverse-engineering and MAME Driver by Norbert Kehrer (August 2006)
NOTE: Eventually to be merged into GALAXIAN.C
2008-08
Dip locations verified with manual
Stephh's notes (based on the games Z80 code and some tests) :
1) 'dambustr'
- This seems to be a bugfixed version as only the 3 "fire" buttons are
tested while entering the initials (code at 0x1e59).
- The "Initials Reset" button only affects the initials, not the scores !
- The "Disable Background Collision" Dip Switch only prevents you to lose
"lives" if you touch the background : you can still be hit by enemies'
bullets and be stalled if speed is too low.
- There is a setting which is only available in the "test mode", it's the
maximum game time. If you don't set it, the game considers it's illimited
time (full doesn't decrease). But once you set it to a value, it is not
possible to turn the value back to 0 even by reseting the game.
- If you go too far without dying, background becomes complete garbage,
but it then appears again correctly. Is there a bad dumped ROM or is
emulation bugged somewhere ? Verification against real PCB is needed !
2) 'dambustra'
- There is sort of bug at 0x1e59 : you can't enter a letter in the
initials screen while pressing one of the system buttons (SERVICE,
"Initials Reset", START1 or START2), and even COIN2.
This is because 8 bytes are checked instead of 3 in 'dambustr'.
- Same as 'dambustr' otherwise.
3) 'dambustruk'
- This set is based on 'dambustr' as there is no initials bug (code at 0x1e0f).
- The differences with 'dambustr' are :
* coinage for 2nd slot
* currency and price (but it's still 2 credits to start a game)
* score is divided by 10
***************************************************************************/
#include "emu.h"
#include "cpu/z80/z80.h"
#include "audio/galaxian.h"
#include "includes/galaxold.h"
class dambustr_state : public galaxold_state
{
public:
dambustr_state(const machine_config &mconfig, device_type type, std::string tag)
: galaxold_state(mconfig, type, tag),
m_custom(*this, "cust") { }
required_device<galaxian_sound_device> m_custom;
int m_noise_data;
DECLARE_WRITE8_MEMBER(dambustr_noise_enable_w);
DECLARE_DRIVER_INIT(dambustr);
};
/* FIXME: Really needed? - Should be handled by either interface */
WRITE8_MEMBER(dambustr_state::dambustr_noise_enable_w)
{
if (data != m_noise_data) {
m_noise_data = data;
m_custom->noise_enable_w(space, offset, data);
}
}
static ADDRESS_MAP_START( dambustr_map, AS_PROGRAM, 8, dambustr_state )
AM_RANGE(0x0000, 0x7fff) AM_ROM
AM_RANGE(0x8000, 0x8000) AM_WRITE(dambustr_bg_color_w)
AM_RANGE(0x8001, 0x8001) AM_WRITE(dambustr_bg_split_line_w)
AM_RANGE(0xc000, 0xc7ff) AM_RAM
AM_RANGE(0xd000, 0xd3ff) AM_RAM_WRITE(galaxold_videoram_w) AM_SHARE("videoram")
AM_RANGE(0xd400, 0xd7ff) AM_READ(galaxold_videoram_r)
AM_RANGE(0xd800, 0xd83f) AM_RAM_WRITE(galaxold_attributesram_w) AM_SHARE("attributesram")
AM_RANGE(0xd840, 0xd85f) AM_RAM AM_SHARE("spriteram")
AM_RANGE(0xd860, 0xd87f) AM_RAM AM_SHARE("bulletsram")
AM_RANGE(0xd880, 0xd8ff) AM_RAM
AM_RANGE(0xe000, 0xe000) AM_READ_PORT("IN0")
AM_RANGE(0xe002, 0xe003) AM_WRITE(galaxold_coin_counter_w)
AM_RANGE(0xe004, 0xe007) AM_DEVWRITE("cust", galaxian_sound_device, lfo_freq_w)
AM_RANGE(0xe800, 0xefff) AM_READ_PORT("IN1")
AM_RANGE(0xe800, 0xe802) AM_DEVWRITE("cust", galaxian_sound_device, background_enable_w)
AM_RANGE(0xe803, 0xe803) AM_WRITE(dambustr_noise_enable_w)
AM_RANGE(0xe804, 0xe804) AM_DEVWRITE("cust", galaxian_sound_device, fire_enable_w) // probably louder than normal shot
AM_RANGE(0xe805, 0xe805) AM_DEVWRITE("cust", galaxian_sound_device, fire_enable_w) // normal shot (like Galaxian)
AM_RANGE(0xe806, 0xe807) AM_DEVWRITE("cust", galaxian_sound_device, vol_w)
AM_RANGE(0xf000, 0xf7ff) AM_READ_PORT("DSW")
AM_RANGE(0xf001, 0xf001) AM_WRITE(galaxold_nmi_enable_w)
AM_RANGE(0xf004, 0xf004) AM_WRITE(galaxold_stars_enable_w)
AM_RANGE(0xf006, 0xf006) AM_WRITE(galaxold_flip_screen_x_w)
AM_RANGE(0xf007, 0xf007) AM_WRITE(galaxold_flip_screen_y_w)
AM_RANGE(0xf800, 0xf800) AM_DEVWRITE("cust", galaxian_sound_device, pitch_w)
AM_RANGE(0xf800, 0xffff) AM_READ(watchdog_reset_r)
ADDRESS_MAP_END
/* verified from Z80 code */
static INPUT_PORTS_START( dambustr )
PORT_START("IN0")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_COIN2 )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_COIN1 )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_START2 )
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_START1 )
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_NAME("Initials Reset") PORT_CODE(KEYCODE_0)
PORT_SERVICE_NO_TOGGLE( 0x40, IP_ACTIVE_HIGH )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_BUTTON3 )
PORT_START("IN1")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON2 )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON1 )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_4WAY
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_4WAY
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_4WAY
PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_4WAY
PORT_DIPNAME( 0x40, 0x40, "Coin Counters" ) PORT_DIPLOCATION("SW:!1")
PORT_DIPSETTING( 0x00, "1" )
PORT_DIPSETTING( 0x40, "2" )
PORT_DIPNAME( 0x80, 0x80, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW:!2")
PORT_DIPSETTING( 0x80, DEF_STR( 1C_1C ) ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x00)
PORT_DIPSETTING( 0x00, DEF_STR( 1C_2C ) ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x00)
PORT_DIPSETTING( 0x80, "A 1/1 B 1/2" ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x40)
PORT_DIPSETTING( 0x00, "A 1/2 B 1/6" ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x40)
PORT_START("DSW")
PORT_DIPNAME( 0x03, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW:!3,!4")
PORT_DIPSETTING( 0x00, "3" )
PORT_DIPSETTING( 0x02, "4" )
PORT_DIPSETTING( 0x01, "5" )
PORT_DIPSETTING( 0x03, "6" )
PORT_DIPNAME( 0x04, 0x00, "Disable Background Collision (Cheat)" ) PORT_DIPLOCATION("SW:!5") /* see notes - manual says must be OFF */
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x04, DEF_STR( On ) )
PORT_DIPNAME( 0x08, 0x00, "Union Jack Flag" ) PORT_DIPLOCATION("SW:!6")
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_BIT( 0xf0, IP_ACTIVE_HIGH, IPT_UNUSED )
INPUT_PORTS_END
/* verified from Z80 code */
static INPUT_PORTS_START( dambustruk )
PORT_INCLUDE(dambustr)
PORT_MODIFY("IN1")
PORT_DIPNAME( 0x80, 0x80, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW:!2")
PORT_DIPSETTING( 0x80, DEF_STR( 1C_1C ) ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x00)
PORT_DIPSETTING( 0x00, DEF_STR( 1C_2C ) ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x00)
PORT_DIPSETTING( 0x80, "A 1/1 B 1/6" ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x40)
PORT_DIPSETTING( 0x00, "A 1/2 B 1/12" ) PORT_CONDITION("IN1", 0x40, EQUALS, 0x40)
INPUT_PORTS_END
static const gfx_layout dambustr_charlayout =
{
8,8,
RGN_FRAC(1,2),
2,
{ RGN_FRAC(0,2), RGN_FRAC(1,2) },
{ 0, 1, 2, 3, 4, 5, 6, 7 },
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 },
8*8
};
static const gfx_layout dambustr_spritelayout =
{
16,16,
RGN_FRAC(1,2),
2,
{ RGN_FRAC(0,2), RGN_FRAC(1,2) },
{ 0, 1, 2, 3, 4, 5, 6, 7,
8*8+0, 8*8+1, 8*8+2, 8*8+3, 8*8+4, 8*8+5, 8*8+6, 8*8+7 },
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8,
16*8, 17*8, 18*8, 19*8, 20*8, 21*8, 22*8, 23*8 },
32*8
};
static GFXDECODE_START( dambustr )
GFXDECODE_ENTRY( "gfx1", 0x0000, dambustr_charlayout, 0, 8 )
GFXDECODE_ENTRY( "gfx1", 0x0000, dambustr_spritelayout, 0, 8 )
GFXDECODE_END
DRIVER_INIT_MEMBER(dambustr_state,dambustr)
{
int i, j, tmp;
int tmpram[16];
UINT8 *rom = memregion("maincpu")->base();
UINT8 *usr = memregion("user1")->base();
UINT8 *gfx = memregion("gfx1")->base();
// Bit swap addresses
for(i=0; i<4096*4; i++) {
rom[i] = usr[BITSWAP16(i,15,14,13,12, 4,10,9,8,7,6,5,3,11,2,1,0)];
};
// Swap program ROMs
for(i=0; i<0x1000; i++) {
tmp = rom[0x5000+i];
rom[0x5000+i] = rom[0x6000+i];
rom[0x6000+i] = rom[0x1000+i];
rom[0x1000+i] = tmp;
};
// Bit swap in $1000-$1fff and $4000-$5fff
for(i=0; i<0x1000; i++) {
rom[0x1000+i] = BITSWAP8(rom[0x1000+i],7,6,5,1,3,2,4,0);
rom[0x4000+i] = BITSWAP8(rom[0x4000+i],7,6,5,1,3,2,4,0);
rom[0x5000+i] = BITSWAP8(rom[0x5000+i],7,6,5,1,3,2,4,0);
};
// Swap graphics ROMs
for(i=0;i<0x4000;i+=16) {
for(j=0; j<16; j++)
tmpram[j] = gfx[i+j];
for(j=0; j<8; j++) {
gfx[i+j] = tmpram[j*2];
gfx[i+j+8] = tmpram[j*2+1];
};
};
}
static MACHINE_CONFIG_START( dambustr, dambustr_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", Z80, 18432000/6) /* 3.072 MHz */
MCFG_CPU_PROGRAM_MAP(dambustr_map)
MCFG_MACHINE_RESET_OVERRIDE(dambustr_state,galaxold)
MCFG_DEVICE_ADD("7474_9m_1", TTL7474, 0)
MCFG_7474_OUTPUT_CB(WRITELINE(dambustr_state,galaxold_7474_9m_1_callback))
MCFG_DEVICE_ADD("7474_9m_2", TTL7474, 0)
MCFG_7474_COMP_OUTPUT_CB(WRITELINE(dambustr_state,galaxold_7474_9m_2_q_callback))
MCFG_TIMER_DRIVER_ADD("int_timer", dambustr_state, galaxold_interrupt_timer)
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_REFRESH_RATE(16000.0/132/2)
MCFG_SCREEN_SIZE(32*8, 32*8)
MCFG_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 2*8, 30*8-1)
MCFG_SCREEN_UPDATE_DRIVER(dambustr_state, screen_update_dambustr)
MCFG_SCREEN_PALETTE("palette")
MCFG_GFXDECODE_ADD("gfxdecode", "palette", dambustr)
MCFG_PALETTE_ADD("palette", 32+2+64+8) /* 32 for the characters, 2 for the bullets, 64 for the stars, 8 for the background */
MCFG_PALETTE_INIT_OWNER(dambustr_state,dambustr)
MCFG_VIDEO_START_OVERRIDE(dambustr_state,dambustr)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_FRAGMENT_ADD(galaxian_audio)
MACHINE_CONFIG_END
ROM_START( dambustr )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "db8a.pr8", 0x4000, 0x1000, CRC(fd041ff4) SHA1(8d27da7bf0c655633711b960cbc23950c8a371ae) )
ROM_LOAD( "db6a.pr6", 0x5000, 0x1000, CRC(448db54b) SHA1(c9afbf02bf4d4ac2972ab7ac6adfa4e951ae79c2) )
ROM_LOAD( "db7a.pr7", 0x6000, 0x1000, CRC(675b1f5e) SHA1(6a386212a640fb467b6956a4dc5a68476af1cf97) )
ROM_LOAD( "db5a.pr5", 0x7000, 0x1000, CRC(75659ecc) SHA1(b61254fb12f3999607abd88d1cc649dcfbf0384c) )
ROM_REGION( 0x10000,"user1",0)
ROM_LOAD( "db11a.pr11", 0x0000, 0x1000, CRC(427bd3fb) SHA1(cdbaef4040fa2e0598a086e320d51ecb26a591dd) )
ROM_LOAD( "db9a.pr9", 0x1000, 0x1000, CRC(57164563) SHA1(8471d0660f39511d0afa3cdd63a1e84b0ea80fd0) )
ROM_LOAD( "db10a.pr10", 0x2000, 0x1000, CRC(075b9c5e) SHA1(ff6ce873897004c0e796813725e260df85a520f9) )
ROM_LOAD( "db12a.pr12", 0x3000, 0x1000, CRC(ed01a68b) SHA1(9dd37c2a25865717a7acdd7e2a3bef26a4cef3d9) )
ROM_REGION( 0x4000, "gfx1", 0 )
ROM_LOAD( "db3a.pr3", 0x0000, 0x1000, CRC(9e9a9710) SHA1(a9f67a05a2882b9f6f3378cc73e90539de4b8ca4) )
ROM_LOAD( "db1a.pr1", 0x1000, 0x1000, CRC(4cb964cd) SHA1(1c90b14deb201a64b8ed4378b022e9e4574aed94) )
ROM_LOAD( "db4a.pr3", 0x2000, 0x1000, CRC(d9d2df33) SHA1(97057fe33c146898755b556558ff707b9f4551ec) )
ROM_LOAD( "db2a.pr2", 0x3000, 0x1000, CRC(0a0a6af5) SHA1(ecd2a6696ce9154f030c830ccb45690787881a73) )
ROM_REGION( 0x0020, "proms", 0 )
ROM_LOAD( "mi-7603-5.ic4", 0x0000, 0x0020, CRC(f131f92f) SHA1(8b0f623d2ea09b5612dde0f330c5e473a7d72e06) ) /* near DB5 - DB8 */
ROM_REGION( 0x0020, "unk_prom", 0 ) //timing?
ROM_LOAD( "mi-7603-5.ic3", 0x0000, 0x0020, CRC(e2a54c47) SHA1(1e08f8e3d0ae0efb2d178ab11ec2bddaeb6d7478) ) /* near DB1 - DB4 */
ROM_END
ROM_START( dambustra )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "db8a.pr8", 0x4000, 0x1000, CRC(fd041ff4) SHA1(8d27da7bf0c655633711b960cbc23950c8a371ae) )
ROM_LOAD( "db6.pr6", 0x5000, 0x1000, CRC(56d301a9) SHA1(a0839767af822ab1b8df1a7d0767e72b494974c6) ) /* This single rom had a yellow label, while all the rest were white */
ROM_LOAD( "db7a.pr7", 0x6000, 0x1000, CRC(675b1f5e) SHA1(6a386212a640fb467b6956a4dc5a68476af1cf97) )
ROM_LOAD( "db5a.pr5", 0x7000, 0x1000, CRC(75659ecc) SHA1(b61254fb12f3999607abd88d1cc649dcfbf0384c) )
ROM_REGION( 0x10000,"user1",0)
ROM_LOAD( "db11.pr11", 0x0000, 0x1000, CRC(427bd3fb) SHA1(cdbaef4040fa2e0598a086e320d51ecb26a591dd) )
ROM_LOAD( "db9a.pr9", 0x1000, 0x1000, CRC(57164563) SHA1(8471d0660f39511d0afa3cdd63a1e84b0ea80fd0) )
ROM_LOAD( "db10a.pr10", 0x2000, 0x1000, CRC(075b9c5e) SHA1(ff6ce873897004c0e796813725e260df85a520f9) ) /* Had a hand drawn "PLUS" symbol on the rom label */
ROM_LOAD( "db12a.pr12", 0x3000, 0x1000, CRC(ed01a68b) SHA1(9dd37c2a25865717a7acdd7e2a3bef26a4cef3d9) )
ROM_REGION( 0x4000, "gfx1", 0 )
ROM_LOAD( "db3a.rom", 0x0000, 0x1000, CRC(2347e26e) SHA1(85909c6cca7a5249d28668291a28e24d5b90293b) ) /* All roms, except for 6 & 11, had a hand drawn "A" on the label */
ROM_LOAD( "db1a.pr1", 0x1000, 0x1000, CRC(4cb964cd) SHA1(1c90b14deb201a64b8ed4378b022e9e4574aed94) )
ROM_LOAD( "db4a.pr3", 0x2000, 0x1000, CRC(d9d2df33) SHA1(97057fe33c146898755b556558ff707b9f4551ec) )
ROM_LOAD( "db2a.pr2", 0x3000, 0x1000, CRC(0a0a6af5) SHA1(ecd2a6696ce9154f030c830ccb45690787881a73) )
ROM_REGION( 0x0020, "proms", 0 )
ROM_LOAD( "mi-7603-5.ic4", 0x0000, 0x0020, CRC(f131f92f) SHA1(8b0f623d2ea09b5612dde0f330c5e473a7d72e06) ) /* near DB5 - DB8 */
ROM_REGION( 0x0020, "unk_prom", 0 ) //timing?
ROM_LOAD( "mi-7603-5.ic3", 0x0000, 0x0020, CRC(e2a54c47) SHA1(1e08f8e3d0ae0efb2d178ab11ec2bddaeb6d7478) ) /* near DB1 - DB4 */
ROM_END
ROM_START( dambustruk )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "db8.pr8", 0x4000, 0x1000, CRC(fd041ff4) SHA1(8d27da7bf0c655633711b960cbc23950c8a371ae) )
ROM_LOAD( "db6p.bin", 0x5000, 0x1000, CRC(35dcee01) SHA1(2c23c727d9b38322a6d0548dfe6a2a254f3530af) )
ROM_LOAD( "db7.pr7", 0x6000, 0x1000, CRC(675b1f5e) SHA1(6a386212a640fb467b6956a4dc5a68476af1cf97) )
ROM_LOAD( "db5.pr5", 0x7000, 0x1000, CRC(75659ecc) SHA1(b61254fb12f3999607abd88d1cc649dcfbf0384c) )
ROM_REGION( 0x10000,"user1",0)
ROM_LOAD( "db11.bin", 0x0000, 0x1000, CRC(9e6b34fe) SHA1(5cf47f5a5280ac53490240df220edf6178e87f4f) )
ROM_LOAD( "db9.pr9", 0x1000, 0x1000, CRC(57164563) SHA1(8471d0660f39511d0afa3cdd63a1e84b0ea80fd0) )
ROM_LOAD( "db10p.bin", 0x2000, 0x1000, CRC(c129c57b) SHA1(c25abd7ee97b71941d9fa6acd0d92c116f1ff408) )
ROM_LOAD( "db12.bin", 0x3000, 0x1000, CRC(ea4c65f5) SHA1(cb761e0543cacd6b437c6e88615f97df83245a34) )
ROM_REGION( 0x4000, "gfx1", 0 )
ROM_LOAD( "db3.pr3", 0x0000, 0x1000, CRC(9e9a9710) SHA1(a9f67a05a2882b9f6f3378cc73e90539de4b8ca4) )
ROM_LOAD( "db1ap.pr1", 0x1000, 0x1000, CRC(4cb964cd) SHA1(1c90b14deb201a64b8ed4378b022e9e4574aed94) )
ROM_LOAD( "db4.pr3", 0x2000, 0x1000, CRC(d9d2df33) SHA1(97057fe33c146898755b556558ff707b9f4551ec) )
ROM_LOAD( "db2.pr2", 0x3000, 0x1000, CRC(0a0a6af5) SHA1(ecd2a6696ce9154f030c830ccb45690787881a73) )
ROM_REGION( 0x0020, "proms", 0 )
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888 } /* Comment */
.highlight .err { color: #A61717; background-color: #E3D2D2 } /* Error */
.highlight .k { color: #080; font-weight: bold } /* Keyword */
.highlight .ch { color: #888 } /* Comment.Hashbang */
.highlight .cm { color: #888 } /* Comment.Multiline */
.highlight .cp { color: #C00; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888 } /* Comment.Single */
.highlight .cs { color: #C00; font-weight: bold; background-color: #FFF0F0 } /* Comment.Special */
.highlight .gd { color: #000; background-color: #FDD } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #A00 } /* Generic.Error */
.highlight .gh { color: #333 } /* Generic.Heading */
.highlight .gi { color: #000; background-color: #DFD } /* Generic.Inserted */
.highlight .go { color: #888 } /* Generic.Output */
.highlight .gp { color: #555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666 } /* Generic.Subheading */
.highlight .gt { color: #A00 } /* Generic.Traceback */
.highlight .kc { color: #080; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #080; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #080; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #080 } /* Keyword.Pseudo */
.highlight .kr { color: #080; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #00D; font-weight: bold } /* Literal.Number */
.highlight .s { color: #D20; background-color: #FFF0F0 } /* Literal.String */
.highlight .na { color: #369 } /* Name.Attribute */
.highlight .nb { color: #038 } /* Name.Builtin */
.highlight .nc { color: #B06; font-weight: bold } /* Name.Class */
.highlight .no { color: #036; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555 } /* Name.Decorator */
.highlight .ne { color: #B06; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #06B; font-weight: bold } /* Name.Function */
.highlight .nl { color: #369; font-style: italic } /* Name.Label */
.highlight .nn { color: #B06; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #369; font-weight: bold } /* Name.Property */
.highlight .nt { color: #B06; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #369 } /* Name.Variable */
.highlight .ow { color: #080 } /* Operator.Word */
.highlight .w { color: #BBB } /* Text.Whitespace */
.highlight .mb { color: #00D; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #00D; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #00D; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #00D; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #00D; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #D20; background-color: #FFF0F0 } /* Literal.String.Affix */
.highlight .sb { color: #D20; background-color: #FFF0F0 } /* Literal.String.Backtick */
.highlight .sc { color: #D20; background-color: #FFF0F0 } /* Literal.String.Char */
.highlight .dl { color: #D20; background-color: #FFF0F0 } /* Literal.String.Delimiter */
.highlight .sd { color: #D20; background-color: #FFF0F0 } /* Literal.String.Doc */
.highlight .s2 { color: #D20; background-color: #FFF0F0 } /* Literal.String.Double */
.highlight .se { color: #04D; background-color: #FFF0F0 } /* Literal.String.Escape */
.highlight .sh { color: #D20; background-color: #FFF0F0 } /* Literal.String.Heredoc */
.highlight .si { color: #33B; background-color: #FFF0F0 } /* Literal.String.Interpol */
.highlight .sx { color: #2B2; background-color: #F0FFF0 } /* Literal.String.Other */
.highlight .sr { color: #080; background-color: #FFF0FF } /* Literal.String.Regex */
.highlight .s1 { color: #D20; background-color: #FFF0F0 } /* Literal.String.Single */
.highlight .ss { color: #A60; background-color: #FFF0F0 } /* Literal.String.Symbol */
.highlight .bp { color: #038 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #06B; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #369 } /* Name.Variable.Class */
.highlight .vg { color: #D70 } /* Name.Variable.Global */
.highlight .vi { color: #33B } /* Name.Variable.Instance */
.highlight .vm { color: #369 } /* Name.Variable.Magic */
.highlight .il { color: #00D; font-weight: bold } /* Literal.Number.Integer.Long */<?xml version="1.0" encoding="UTF-8" ?>
<!-- **************************************************** -->
<!-- * This MAME layout file was generated by MFME2MAME * -->
<!-- * Please visit mfme2mame.org for more information. * -->
<!-- **************************************************** -->
<mamelayout version="2">
<element name="backdrop_colour">
<rect>
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_2_1_border" defstate="0">
<rect state="1">
<color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_2_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="13">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_0_1_border" defstate="0">
<rect state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_0_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="JACKPOT">
<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="£3.00">
<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_1_1_border" defstate="0">
<rect state="1">
<color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_1_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="14">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_23_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="6">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_15_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="7">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_7_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="8">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_5_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="10">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_6_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="9">
<color red="0.0" 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.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_4_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="11">
<color red="0.0" 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.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_3_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="12">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_9_1_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_9_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="SPECIAL SERIES">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_8_1_border" defstate="0">
<rect state="1">
<color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_8_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="UNLIMITED NUDGES">
<color red="0.0" 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.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_47_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="3">
<color red="0.0" 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.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_55_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="2">
<color red="0.0" 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.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_63_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="1">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_31_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="5">
<color red="0.0" 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.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="lamp_39_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_11_1_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_11_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="STOP A WINNER">
<color red="0.0" 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.25" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_13_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="LUCKY">
<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="DIP">
<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.25" green="0.25" blue="0.38"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.09"/>
</rect>
</element>
<element name="lamp_22_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="0.75"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="REWIND LAST WIN">
<color red="0.0" 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.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_30_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="2 NUDGES">
<color red="0.0" 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.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_14_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="4 NUDGES">
<color red="0.0" 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.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_12_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="6 NUDGES">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_10_1_border" defstate="0">
<rect state="1">
<color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="lamp_10_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="8 NUDGES">
<color red="0.0" 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.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_38_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="20P">
<color red="0.0" 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.50" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="lamp_46_1" defstate="0">
<rect state="1">
<color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="10P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_40_1_border" defstate="0">
<rect state="1">
<color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_40_1" defstate="0">
<rect state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="x2">
<color red="0.0" 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.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_41_1" defstate="0">
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="x2">
<color red="0.0" 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.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_42_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="x3">
<color red="0.0" 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.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_43_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="x4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="lamp_40_2_border" defstate="0">
<rect state="1">
<color red="0.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="lamp_40_2" defstate="0">
<rect state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="BLUE">
<color red="0.0" 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_2_border" defstate="0">
<rect state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="lamp_41_2" defstate="0">
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="RED">
<color red="0.0" 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.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_42_2" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="3,7,4,12">
<color red="0.0" 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.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_43_2" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="1,5,7">
<color red="0.0" 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.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_34_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="2,3,4,6,">
<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,8,10,12">
<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_33_1_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_33_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="LOW">
<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="1-6">
<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_32_1_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_32_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="HIGH">
<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-12">
<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_35_1_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_35_1" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="1,3,4,5,">
<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,9,11,12">
<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_32_2_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_32_2" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="x2">
<color red="0.0" 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_2_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_33_2" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="x2">
<color red="0.0" 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_2_border" defstate="0">
<rect state="1">
<color red="0.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_34_2" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="x1.5">
<color red="0.0" 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.25" green="0.25" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.06" green="0.06" blue="0.12"/>
</rect>
</element>
<element name="lamp_35_2" defstate="0">
<rect state="1">
<color red="0.50" green="0.50" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="x1.5">
<color red="0.0" 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">
<disk state="1">
<color red="0.00" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_36_1" defstate="0">
<disk state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</disk>
<text string="WIN">
<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_24_1_border" defstate="0">
<disk state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_24_1" defstate="0">
<disk state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="11">
<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_18_1_border" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_18_1" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="2">
<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.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_19_1" defstate="0">
<disk state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="9">
<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.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_20_1" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="12">
<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.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_21_1" defstate="0">
<disk state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="1">
<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.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_29_1" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="10">
<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_1_border" defstate="0">
<disk state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_28_1" defstate="0">
<disk state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="3">
<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.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_27_1" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="8">
<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_26_1_border" defstate="0">
<disk state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_26_1" defstate="0">
<disk state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="5">
<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_25_1_border" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_25_1" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="4">
<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_16_1_border" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="0.50"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</disk>
</element>
<element name="lamp_16_1" defstate="0">
<disk state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</disk>
<text string="6">
<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_17_1_border" defstate="0">
<disk state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</disk>
</element>
<element name="lamp_17_1" defstate="0">
<disk state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="7">
<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_44_1_border" defstate="0">
<disk state="1">
<color red="0.00" green="0.50" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</disk>
</element>
<element name="lamp_44_1" defstate="0">
<disk state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</disk>
<disk state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</disk>
<text string="LOSE">
<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_87_border">
<rect state="1">
<color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_87">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="GAMBLE">
<color red="0.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.00" green="0.00" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.00" green="0.00" blue="0.12"/>
</rect>
</element>
<element name="colour_button_88">
<rect state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="AUTO">
<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"/>
<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.00" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_89">
<rect state="1">
<color red="0.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="COLLECT">
<color red="0.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.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_90">
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
<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"/>
<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.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_91">
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
<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"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_92_border">
<rect state="1">
<color red="0.50" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="colour_button_92">
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="HOLD">
<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"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_93_border">
<rect state="1">
<color red="0.50" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_93">
<rect state="1">
<color red="1.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="NUDGE">
<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"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_94_border">
<rect state="1">
<color red="0.50" green="0.25" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.12" green="0.06" blue="0.00"/>
</rect>
</element>
<element name="colour_button_94">
<rect state="1">
<color red="1.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="CANCEL">
<color red="0.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_95_border">
<rect state="1">
<color red="0.00" green="0.50" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.12" blue="0.00"/>
</rect>
</element>
<element name="colour_button_95">
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="START">
<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"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
</element>
<element name="colour_button_97_border">
<rect state="1">
<color red="0.50" green="0.50" blue="0.50"/>
</rect>
<rect state="0">
<color red="0.12" green="0.12" blue="0.12"/>
</rect>
</element>
<element name="colour_button_97">
<rect state="1">
<color red="1.00" green="1.00" blue="1.00"/>
</rect>
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="20p">
<color red="0.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"/>
</rect>
</element>
<element name="reel0" defstate="0">
<reel reelreversed="0" stateoffset="1365" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
<color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel1" defstate="0">
<reel reelreversed="0" stateoffset="1365" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
<color red="0.0" green="0.0" blue="0.0"/>
</reel>
</element>
<element name="reel2" defstate="0">
<reel reelreversed="0" stateoffset="1365" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
<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"/>
</rect>
</element>
<element name="led_on">
<rect state="1">
<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"/>
</disk>
</element>
<element name="led_off">
<rect state="0">
<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"/>
</disk>
</element>
<element name="led_digit_rect_black">
<rect>
<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"/>
</rect>
</element>
<element name="led_digit_rect_green">
<rect>
<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"/>
</rect>
</element>
<element name="led_digit_red">
<led7seg>
<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"/>
</led7seg>
</element>
<element name="led_digit_blue">
<led7seg>
<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"/>
</led16segsc>
</element>
<element name="vfd0_background">
<rect>
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="label_59">
<text string="STRIKE">
<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="A">
<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="LIGHT">
<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="label_60">
<text string="Any Position">
<color red="0.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="30p">
<color red="0.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="40p">
<color red="0.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="60p">
<color red="0.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="80p">
<color red="0.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="£1.00">
<color red="0.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="£1.00">
<color red="0.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_78">
<text string="£2.00">
<color red="0.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_79">
<text string="£2.00">
<color red="0.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="£3.00">
<color red="0.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="£3.00">
<color red="0.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="30p">
<color red="0.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_84">
<text string="BY PETE WALTON">
<color red="0.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_85">
<text string="With thanks to Red Rose Leisure.">
<color red="0.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_86">
<text string="MFME v2/3">
<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="Update">
<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="debug_backdrop_colour">
<rect>
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
<element name="debug_lamp_standard">
<rect state="0">
<color red="0.00" green="0.20" blue="0.00"/>
</rect>
<rect state="1">
<color red="0.00" green="1.00" blue="0.00"/>
</rect>
</element>
<element name="debug_lamp_reel">
<rect state="0">
<color red="0.00" green="0.00" blue="0.20"/>
</rect>
<rect state="1">
<color red="0.00" green="0.00" blue="1.00"/>
</rect>
</element>
<element name="debug_lamp_segment">
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<rect state="1">
<color red="1.00" green="0.00" blue="0.00"/>
</rect>
</element>
<element name="debug_lamp_button">
<rect state="0">
<color red="0.20" green="0.20" blue="0.00"/>
</rect>
<rect state="1">
<color red="1.00" green="1.00" blue="0.00"/>
</rect>
</element>
<element name="debug_lamp_unreferenced">
<rect state="0">
<color red="0.20" green="0.20" blue="0.20"/>
</rect>
<rect state="1">
<color red="1.00" green="1.00" blue="1.00"/>
</rect>
</element>
<repeat count="256">
<param name="n" start="0" increment="1"/>
<element name="debug_lamp_label_~n~">
<text string="~n~">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
</repeat>
<element name="debug_button_standard">
<rect state="0">
<color red="0.20" green="0.20" blue="0.00"/>
</rect>
<rect state="1">
<color red="1.00" green="1.00" blue="0.00"/>
</rect>
</element>
<element name="debug_button_unreferenced">
<rect state="0">
<color red="0.20" green="0.20" blue="0.20"/>
</rect>
<rect state="1">
<color red="1.00" green="1.00" blue="1.00"/>
</rect>
</element>
<repeat count="64">
<param name="n" start="0" increment="1"/>
<element name="debug_button_label_~n~">
<text string="~n~">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
</repeat>
<element name="debug_vfd">
<led16segsc>
<color red="0.0" green="1.0" blue="1.0"/>
</led16segsc>
</element>
<element name="debug_stepper_value" defstate="0">
<simplecounter maxstate="999" digits="3">
<color red="1.0" green="1.0" blue="1.0"/>
</simplecounter>
</element>
<element name="debug_reel_symbol_count_0">
<text string="24">
<color red="1.0" green="1.0" blue="1.0"/>
</text>
</element>
<element name="debug_reel_symbol_count_1">
<text string="24">
<color red="1.0" green="1.0" blue="1.0"/>
</text>
</element>
<element name="debug_reel_symbol_count_2">
<text string="24">
<color red="1.0" green="1.0" blue="1.0"/>
</text>
</element>
<view name="AWP Simulated Video">
<element ref="backdrop_colour">
<bounds x="0" y="0" width="792" height="521"/>
</element>
<element ref="reel_background">
<bounds x="297" y="330" width="80" height="140"/>
</element>
<element name="sreel1" ref="reel0" state="0">
<bounds x="297" y="330" width="80" height="140"/>
</element>
<element ref="reel_background">
<bounds x="381" y="330" width="80" height="140"/>
</element>
<element name="sreel2" ref="reel1" state="0">
<bounds x="381" y="330" width="80" height="140"/>
</element>
<element ref="reel_background">
<bounds x="465" y="330" width="80" height="140"/>
</element>
<element name="sreel3" ref="reel2" state="0">
<bounds x="465" y="330" width="80" height="140"/>
</element>
<element name="lamp2" ref="lamp_2_1_border" state="0">
<bounds x="647" y="77" width="52" height="32"/>
</element>
<element name="lamp2" ref="lamp_2_1" state="0">
<bounds x="649" y="79" width="48" height="28"/>
</element>
<element name="lamp0" ref="lamp_0_1_border" state="0">
<bounds x="635" y="2" width="77" height="42"/>
</element>
<element name="lamp0" ref="lamp_0_1" state="0">
<bounds x="637" y="4" width="73" height="38"/>
</element>
<element name="lamp1" ref="lamp_1_1_border" state="0">
<bounds x="647" y="47" width="52" height="32"/>
</element>
<element name="lamp1" ref="lamp_1_1" state="0">
<bounds x="649" y="49" width="48" height="28"/>
</element>
<element name="lamp23" ref="lamp_23_1_border" state="0">
<bounds x="647" y="287" width="52" height="32"/>
</element>
<element name="lamp23" ref="lamp_23_1" state="0">
<bounds x="649" y="289" width="48" height="28"/>
</element>
<element name="lamp15" ref="lamp_15_1_border" state="0">
<bounds x="647" y="257" width="52" height="32"/>
</element>
<element name="lamp15" ref="lamp_15_1" state="0">
<bounds x="649" y="259" width="48" height="28"/>
</element>
<element name="lamp7" ref="lamp_7_1_border" state="0">
<bounds x="647" y="227" width="52" height="32"/>
</element>
<element name="lamp7" ref="lamp_7_1" state="0">
<bounds x="649" y="229" width="48" height="28"/>
</element>
<element name="lamp5" ref="lamp_5_1_border" state="0">
<bounds x="647" y="167" width="52" height="32"/>
</element>
<element name="lamp5" ref="lamp_5_1" state="0">
<bounds x="649" y="169" width="48" height="28"/>
</element>
<element name="lamp6" ref="lamp_6_1_border" state="0">
<bounds x="647" y="197" width="52" height="32"/>
</element>
<element name="lamp6" ref="lamp_6_1" state="0">
<bounds x="649" y="199" width="48" height="28"/>
</element>
<element name="lamp4" ref="lamp_4_1_border" state="0">
<bounds x="647" y="137" width="52" height="32"/>
</element>
<element name="lamp4" ref="lamp_4_1" state="0">
<bounds x="649" y="139" width="48" height="28"/>
</element>
<element name="lamp3" ref="lamp_3_1_border" state="0">
<bounds x="647" y="107" width="52" height="32"/>
</element>
<element name="lamp3" ref="lamp_3_1" state="0">
<bounds x="649" y="109" width="48" height="28"/>
</element>
<element name="lamp9" ref="lamp_9_1_border" state="0">
<bounds x="698" y="77" width="72" height="32"/>
</element>
<element name="lamp9" ref="lamp_9_1" state="0">
<bounds x="700" y="79" width="68" height="28"/>
</element>
<element name="lamp8" ref="lamp_8_1_border" state="0">
<bounds x="566" y="47" width="82" height="32"/>
</element>
<element name="lamp8" ref="lamp_8_1" state="0">
<bounds x="568" y="49" width="78" height="28"/>
</element>
<element name="lamp47" ref="lamp_47_1_border" state="0">
<bounds x="647" y="377" width="51" height="27"/>
</element>
<element name="lamp47" ref="lamp_47_1" state="0">
<bounds x="649" y="379" width="47" height="23"/>
</element>
<element name="lamp55" ref="lamp_55_1_border" state="0">
<bounds x="647" y="404" width="51" height="27"/>
</element>
<element name="lamp55" ref="lamp_55_1" state="0">
<bounds x="649" y="406" width="47" height="23"/>
</element>
<element name="lamp63" ref="lamp_63_1_border" state="0">
<bounds x="647" y="431" width="51" height="27"/>
</element>
<element name="lamp63" ref="lamp_63_1" state="0">
<bounds x="649" y="433" width="47" height="23"/>
</element>
<element name="lamp31" ref="lamp_31_1_border" state="0">
<bounds x="647" y="323" width="51" height="27"/>
</element>
<element name="lamp31" ref="lamp_31_1" state="0">
<bounds x="649" y="325" width="47" height="23"/>
</element>
<element name="lamp39" ref="lamp_39_1_border" state="0">
<bounds x="647" y="350" width="51" height="27"/>
</element>
<element name="lamp39" ref="lamp_39_1" state="0">
<bounds x="649" y="352" width="47" height="23"/>
</element>
<element name="lamp11" ref="lamp_11_1_border" state="0">
<bounds x="698" y="137" width="72" height="32"/>
</element>
<element name="lamp11" ref="lamp_11_1" state="0">
<bounds x="700" y="139" width="68" height="28"/>
</element>
<element name="lamp13" ref="lamp_13_1_border" state="0">
<bounds x="698" y="197" width="72" height="32"/>
</element>
<element name="lamp13" ref="lamp_13_1" state="0">
<bounds x="700" y="199" width="68" height="28"/>
</element>
<element name="lamp22" ref="lamp_22_1_border" state="0">
<bounds x="698" y="257" width="72" height="32"/>
</element>
<element name="lamp22" ref="lamp_22_1" state="0">
<bounds x="700" y="259" width="68" height="28"/>
</element>
<element name="lamp30" ref="lamp_30_1_border" state="0">
<bounds x="575" y="287" width="72" height="32"/>
</element>
<element name="lamp30" ref="lamp_30_1" state="0">
<bounds x="577" y="289" width="68" height="28"/>
</element>
<element name="lamp14" ref="lamp_14_1_border" state="0">
<bounds x="575" y="227" width="72" height="32"/>
</element>
<element name="lamp14" ref="lamp_14_1" state="0">
<bounds x="577" y="229" width="68" height="28"/>
</element>
<element name="lamp12" ref="lamp_12_1_border" state="0">
<bounds x="575" y="167" width="72" height="32"/>
</element>
<element name="lamp12" ref="lamp_12_1" state="0">
<bounds x="577" y="169" width="68" height="28"/>
</element>
<element name="lamp10" ref="lamp_10_1_border" state="0">
<bounds x="575" y="107" width="72" height="32"/>
</element>
<element name="lamp10" ref="lamp_10_1" state="0">
<bounds x="577" y="109" width="68" height="28"/>
</element>
<element name="lamp38" ref="lamp_38_1_border" state="0">
<bounds x="710" y="335" width="47" height="27"/>
</element>
<element name="lamp38" ref="lamp_38_1" state="0">
<bounds x="712" y="337" width="43" height="23"/>
</element>
<element name="lamp46" ref="lamp_46_1_border" state="0">
<bounds x="587" y="335" width="47" height="27"/>
</element>
<element name="lamp46" ref="lamp_46_1" state="0">
<bounds x="589" y="337" width="43" height="23"/>
</element>
<element name="lamp40" ref="lamp_40_1_border" state="0">
<bounds x="185" y="104" width="32" height="32"/>
</element>
<element name="lamp40" ref="lamp_40_1" state="0">
<bounds x="187" y="106" width="28" height="28"/>
</element>
<element name="lamp41" ref="lamp_41_1_border" state="0">
<bounds x="185" y="74" width="32" height="32"/>
</element>
<element name="lamp41" ref="lamp_41_1" state="0">
<bounds x="187" y="76" width="28" height="28"/>
</element>
<element name="lamp42" ref="lamp_42_1_border" state="0">
<bounds x="185" y="44" width="32" height="32"/>
</element>
<element name="lamp42" ref="lamp_42_1" state="0">
<bounds x="187" y="46" width="28" height="28"/>
</element>
<element name="lamp43" ref="lamp_43_1_border" state="0">
<bounds x="185" y="14" width="32" height="32"/>
</element>
<element name="lamp43" ref="lamp_43_1" state="0">
<bounds x="187" y="16" width="28" height="28"/>
</element>
<element name="lamp40" ref="lamp_40_2_border" state="0">
<bounds x="218" y="104" width="57" height="32"/>
</element>
<element name="lamp40" ref="lamp_40_2" state="0">
<bounds x="220" y="106" width="53" height="28"/>
</element>
<element name="lamp41" ref="lamp_41_2_border" state="0">
<bounds x="218" y="74" width="57" height="32"/>
</element>
<element name="lamp41" ref="lamp_41_2" state="0">
<bounds x="220" y="76" width="53" height="28"/>
</element>
<element name="lamp42" ref="lamp_42_2_border" state="0">
<bounds x="218" y="44" width="57" height="32"/>
</element>
<element name="lamp42" ref="lamp_42_2" state="0">
<bounds x="220" y="46" width="53" height="28"/>
</element>
<element name="lamp43" ref="lamp_43_2_border" state="0">
<bounds x="218" y="14" width="57" height="32"/>
</element>
<element name="lamp43" ref="lamp_43_2" state="0">
<bounds x="220" y="16" width="53" height="28"/>
</element>
<element name="lamp34" ref="lamp_34_1_border" state="0">
<bounds x="218" y="194" width="57" height="32"/>
</element>
<element name="lamp34" ref="lamp_34_1" state="0">
<bounds x="220" y="196" width="53" height="28"/>
</element>
<element name="lamp33" ref="lamp_33_1_border" state="0">
<bounds x="218" y="164" width="57" height="32"/>
</element>
<element name="lamp33" ref="lamp_33_1" state="0">
<bounds x="220" y="166" width="53" height="28"/>
</element>
<element name="lamp32" ref="lamp_32_1_border" state="0">
<bounds x="218" y="134" width="57" height="32"/>
</element>
<element name="lamp32" ref="lamp_32_1" state="0">
<bounds x="220" y="136" width="53" height="28"/>
</element>
<element name="lamp35" ref="lamp_35_1_border" state="0">
<bounds x="218" y="224" width="57" height="32"/>
</element>
<element name="lamp35" ref="lamp_35_1" state="0">
<bounds x="220" y="226" width="53" height="28"/>
</element>
<element name="lamp32" ref="lamp_32_2_border" state="0">
<bounds x="185" y="134" width="32" height="32"/>
</element>
<element name="lamp32" ref="lamp_32_2" state="0">
<bounds x="187" y="136" width="28" height="28"/>
</element>
<element name="lamp33" ref="lamp_33_2_border" state="0">
<bounds x="185" y="164" width="32" height="32"/>
</element>
<element name="lamp33" ref="lamp_33_2" state="0">
<bounds x="187" y="166" width="28" height="28"/>
</element>
<element name="lamp34" ref="lamp_34_2_border" state="0">
<bounds x="185" y="194" width="32" height="32"/>
</element>
<element name="lamp34" ref="lamp_34_2" state="0">
<bounds x="187" y="196" width="28" height="28"/>
</element>
<element name="lamp35" ref="lamp_35_2_border" state="0">
<bounds x="185" y="224" width="32" height="32"/>
</element>
<element name="lamp35" ref="lamp_35_2" state="0">
<bounds x="187" y="226" width="28" height="28"/>
</element>
<element name="lamp36" ref="lamp_36_1_border" state="0">
<bounds x="296" y="203" width="52" height="32"/>
</element>
<element name="lamp36" ref="lamp_36_1" state="0">
<bounds x="298" y="205" width="48" height="28"/>
</element>
<element name="lamp24" ref="lamp_24_1_border" state="0">
<bounds x="470" y="102" width="42" height="42"/>
</element>
<element name="lamp24" ref="lamp_24_1" state="0">
<bounds x="472" y="104" width="38" height="38"/>
</element>
<element name="lamp18" ref="lamp_18_1_border" state="0">
<bounds x="385" y="20" width="42" height="42"/>
</element>
<element name="lamp18" ref="lamp_18_1" state="0">
<bounds x="387" y="22" width="38" height="38"/>
</element>
<element name="lamp19" ref="lamp_19_1_border" state="0">
<bounds x="342" y="33" width="42" height="42"/>
</element>
<element name="lamp19" ref="lamp_19_1" state="0">
<bounds x="344" y="35" width="38" height="38"/>
</element>
<element name="lamp20" ref="lamp_20_1_border" state="0">
<bounds x="313" y="63" width="42" height="42"/>
</element>
<element name="lamp20" ref="lamp_20_1" state="0">
<bounds x="315" y="65" width="38" height="38"/>
</element>
<element name="lamp21" ref="lamp_21_1_border" state="0">
<bounds x="303" y="104" width="42" height="42"/>
</element>
<element name="lamp21" ref="lamp_21_1" state="0">
<bounds x="305" y="106" width="38" height="38"/>
</element>
<element name="lamp29" ref="lamp_29_1_border" state="0">
<bounds x="313" y="146" width="42" height="42"/>
</element>
<element name="lamp29" ref="lamp_29_1" state="0">
<bounds x="315" y="148" width="38" height="38"/>
</element>
<element name="lamp28" ref="lamp_28_1_border" state="0">
<bounds x="345" y="176" width="42" height="42"/>
</element>
<element name="lamp28" ref="lamp_28_1" state="0">
<bounds x="347" y="178" width="38" height="38"/>
</element>
<element name="lamp27" ref="lamp_27_1_border" state="0">
<bounds x="387" y="189" width="42" height="42"/>
</element>
<element name="lamp27" ref="lamp_27_1" state="0">
<bounds x="389" y="191" width="38" height="38"/>
</element>
<element name="lamp26" ref="lamp_26_1_border" state="0">
<bounds x="429" y="176" width="42" height="42"/>
</element>
<element name="lamp26" ref="lamp_26_1" state="0">
<bounds x="431" y="178" width="38" height="38"/>
</element>
<element name="lamp25" ref="lamp_25_1_border" state="0">
<bounds x="460" y="143" width="42" height="42"/>
</element>
<element name="lamp25" ref="lamp_25_1" state="0">
<bounds x="462" y="145" width="38" height="38"/>
</element>
<element name="lamp16" ref="lamp_16_1_border" state="0">
<bounds x="458" y="60" width="42" height="42"/>
</element>
<element name="lamp16" ref="lamp_16_1" state="0">
<bounds x="460" y="62" width="38" height="38"/>
</element>
<element name="lamp17" ref="lamp_17_1_border" state="0">
<bounds x="427" y="31" width="42" height="42"/>
</element>
<element name="lamp17" ref="lamp_17_1" state="0">
<bounds x="429" y="33" width="38" height="38"/>
</element>
<element name="lamp44" ref="lamp_44_1_border" state="0">
<bounds x="470" y="200" width="52" height="32"/>
</element>
<element name="lamp44" ref="lamp_44_1" state="0">
<bounds x="472" y="202" width="48" height="28"/>
</element>
<element name="lamp60" ref="colour_button_87_border" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="467" y="284" width="75" height="37"/>
</element>
<element name="lamp60" ref="colour_button_87" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="469" y="286" width="71" height="33"/>
</element>
<element name="lamp61" ref="colour_button_88_border" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="383" y="284" width="75" height="37"/>
</element>
<element name="lamp61" ref="colour_button_88" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="385" y="286" width="71" height="33"/>
</element>
<element name="lamp62" ref="colour_button_89_border" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="299" y="284" width="75" height="37"/>
</element>
<element name="lamp62" ref="colour_button_89" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="301" y="286" width="71" height="33"/>
</element>
<element name="lamp51" ref="colour_button_90_border" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="386" y="473" width="75" height="37"/>
</element>
<element name="lamp51" ref="colour_button_90" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="388" y="475" width="71" height="33"/>
</element>
<element name="lamp50" ref="colour_button_91_border" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="470" y="473" width="75" height="37"/>
</element>
<element name="lamp50" ref="colour_button_91" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="472" y="475" width="71" height="33"/>
</element>
<element name="lamp52" ref="colour_button_92_border" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="302" y="473" width="75" height="37"/>
</element>
<element name="lamp52" ref="colour_button_92" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="304" y="475" width="71" height="33"/>
</element>
<element name="lamp53" ref="colour_button_93_border" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="188" y="473" width="75" height="37"/>
</element>
<element name="lamp53" ref="colour_button_93" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="190" y="475" width="71" height="33"/>
</element>
<element name="lamp54" ref="colour_button_94_border" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="86" y="473" width="75" height="37"/>
</element>
<element name="lamp54" ref="colour_button_94" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="88" y="475" width="71" height="33"/>
</element>
<element name="lamp49" ref="colour_button_95_border" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="569" y="473" width="75" height="37"/>
</element>
<element name="lamp49" ref="colour_button_95" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="571" y="475" width="71" height="33"/>
</element>
<element name="lamp-1" ref="colour_button_97_border" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="758" y="1" width="34" height="27"/>
</element>
<element name="lamp-1" ref="colour_button_97" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="760" y="3" width="30" height="23"/>
</element>
<element ref="vfd0_background">
<bounds x="287" y="245" width="272" height="30"/>
</element>
<element name="vfd15" ref="vfd0" state="0">
<bounds x="287" y="245" width="17" height="30"/>
</element>
<element name="vfd14" ref="vfd0" state="0">
<bounds x="304" y="245" width="17" height="30"/>
</element>
<element name="vfd13" ref="vfd0" state="0">
<bounds x="321" y="245" width="17" height="30"/>
</element>
<element name="vfd12" ref="vfd0" state="0">
<bounds x="338" y="245" width="17" height="30"/>
</element>
<element name="vfd11" ref="vfd0" state="0">
<bounds x="355" y="245" width="17" height="30"/>
</element>
<element name="vfd10" ref="vfd0" state="0">
<bounds x="372" y="245" width="17" height="30"/>
</element>
<element name="vfd9" ref="vfd0" state="0">
<bounds x="389" y="245" width="17" height="30"/>
</element>
<element name="vfd8" ref="vfd0" state="0">
<bounds x="406" y="245" width="17" height="30"/>
</element>
<element name="vfd7" ref="vfd0" state="0">
<bounds x="423" y="245" width="17" height="30"/>
</element>
<element name="vfd6" ref="vfd0" state="0">
<bounds x="440" y="245" width="17" height="30"/>
</element>
<element name="vfd5" ref="vfd0" state="0">
<bounds x="457" y="245" width="17" height="30"/>
</element>
<element name="vfd4" ref="vfd0" state="0">
<bounds x="474" y="245" width="17" height="30"/>
</element>
<element name="vfd3" ref="vfd0" state="0">
<bounds x="491" y="245" width="17" height="30"/>
</element>
<element name="vfd2" ref="vfd0" state="0">
<bounds x="508" y="245" width="17" height="30"/>
</element>
<element name="vfd1" ref="vfd0" state="0">
<bounds x="525" y="245" width="17" height="30"/>
</element>
<element name="vfd0" ref="vfd0" state="0">
<bounds x="542" y="245" width="17" height="30"/>
</element>
<element name="label59" ref="label_59">
<bounds x="372" y="90" width="73" height="72"/>
</element>
<element name="label60" ref="label_60">
<bounds x="37" y="204" width="71" height="13"/>
</element>
<element name="label72" ref="label_72">
<bounds x="73" y="161" width="26" height="16"/>
</element>
<element name="label73" ref="label_73">
<bounds x="73" y="147" width="26" height="16"/>
</element>
<element name="label74" ref="label_74">
<bounds x="74" y="135" width="26" height="16"/>
</element>
<element name="label75" ref="label_75">
<bounds x="74" y="123" width="26" height="16"/>
</element>
<element name="label76" ref="label_76">
<bounds x="74" y="110" width="37" height="16"/>
</element>
<element name="label77" ref="label_77">
<bounds x="74" y="95" width="37" height="16"/>
</element>
<element name="label78" ref="label_78">
<bounds x="74" y="81" width="37" height="16"/>
</element>
<element name="label79" ref="label_79">
<bounds x="74" y="67" width="37" height="16"/>
</element>
<element name="label80" ref="label_80">
<bounds x="74" y="53" width="37" height="16"/>
</element>
<element name="label81" ref="label_81">
<bounds x="74" y="39" width="37" height="16"/>
</element>
<element name="label82" ref="label_82">
<bounds x="74" y="188" width="26" height="16"/>
</element>
<element name="label84" ref="label_84">
<bounds x="50" y="365" width="181" height="24"/>
</element>
<element name="label85" ref="label_85">
<bounds x="82" y="398" width="115" height="26"/>
</element>
<element name="label86" ref="label_86">
<bounds x="684" y="470" width="67" height="26"/>
</element>
</view>
<view name="MFME2MAME Debug">
<element ref="debug_backdrop_colour">
<bounds x="0" y="0" width="1920" height="1080"/>
</element>
<element name="lamp0" ref="debug_lamp_standard" state="0">
<bounds x="32" y="32" width="60" height="60"/>
</element>
<element name="lamp1" ref="debug_lamp_standard" state="0">
<bounds x="96" y="32" width="60" height="60"/>
</element>
<element name="lamp2" ref="debug_lamp_standard" state="0">
<bounds x="160" y="32" width="60" height="60"/>
</element>
<element name="lamp3" ref="debug_lamp_standard" state="0">
<bounds x="224" y="32" width="60" height="60"/>
</element>
<element name="lamp4" ref="debug_lamp_standard" state="0">
<bounds x="288" y="32" width="60" height="60"/>
</element>
<element name="lamp5" ref="debug_lamp_standard" state="0">
<bounds x="352" y="32" width="60" height="60"/>
</element>
<element name="lamp6" ref="debug_lamp_standard" state="0">
<bounds x="416" y="32" width="60" height="60"/>
</element>
<element name="lamp7" ref="debug_lamp_standard" state="0">
<bounds x="480" y="32" width="60" height="60"/>
</element>
<element name="lamp8" ref="debug_lamp_standard" state="0">
<bounds x="544" y="32" width="60" height="60"/>
</element>
<element name="lamp9" ref="debug_lamp_standard" state="0">
<bounds x="608" y="32" width="60" height="60"/>
</element>
<element name="lamp10" ref="debug_lamp_standard" state="0">
<bounds x="672" y="32" width="60" height="60"/>
</element>
<element name="lamp11" ref="debug_lamp_standard" state="0">
<bounds x="736" y="32" width="60" height="60"/>
</element>
<element name="lamp12" ref="debug_lamp_standard" state="0">
<bounds x="800" y="32" width="60" height="60"/>
</element>
<element name="lamp13" ref="debug_lamp_standard" state="0">
<bounds x="864" y="32" width="60" height="60"/>
</element>
<element name="lamp14" ref="debug_lamp_standard" state="0">
<bounds x="928" y="32" width="60" height="60"/>
</element>
<element name="lamp15" ref="debug_lamp_standard" state="0">
<bounds x="992" y="32" width="60" height="60"/>
</element>
<element name="lamp16" ref="debug_lamp_standard" state="0">
<bounds x="32" y="96" width="60" height="60"/>
</element>
<element name="lamp17" ref="debug_lamp_standard" state="0">
<bounds x="96" y="96" width="60" height="60"/>
</element>
<element name="lamp18" ref="debug_lamp_standard" state="0">
<bounds x="160" y="96" width="60" height="60"/>
</element>
<element name="lamp19" ref="debug_lamp_standard" state="0">
<bounds x="224" y="96" width="60" height="60"/>
</element>
<element name="lamp20" ref="debug_lamp_standard" state="0">
<bounds x="288" y="96" width="60" height="60"/>
</element>
<element name="lamp21" ref="debug_lamp_standard" state="0">
<bounds x="352" y="96" width="60" height="60"/>
</element>
<element name="lamp22" ref="debug_lamp_standard" state="0">
<bounds x="416" y="96" width="60" height="60"/>
</element>
<element name="lamp23" ref="debug_lamp_standard" state="0">
<bounds x="480" y="96" width="60" height="60"/>
</element>
<element name="lamp24" ref="debug_lamp_standard" state="0">
<bounds x="544" y="96" width="60" height="60"/>
</element>
<element name="lamp25" ref="debug_lamp_standard" state="0">
<bounds x="608" y="96" width="60" height="60"/>
</element>
<element name="lamp26" ref="debug_lamp_standard" state="0">
<bounds x="672" y="96" width="60" height="60"/>
</element>
<element name="lamp27" ref="debug_lamp_standard" state="0">
<bounds x="736" y="96" width="60" height="60"/>
</element>
<element name="lamp28" ref="debug_lamp_standard" state="0">
<bounds x="800" y="96" width="60" height="60"/>
</element>
<element name="lamp29" ref="debug_lamp_standard" state="0">
<bounds x="864" y="96" width="60" height="60"/>
</element>
<element name="lamp30" ref="debug_lamp_standard" state="0">
<bounds x="928" y="96" width="60" height="60"/>
</element>
<element name="lamp31" ref="debug_lamp_standard" state="0">
<bounds x="992" y="96" width="60" height="60"/>
</element>
<element name="lamp32" ref="debug_lamp_standard" state="0">
<bounds x="32" y="160" width="60" height="60"/>
</element>
<element name="lamp33" ref="debug_lamp_standard" state="0">
<bounds x="96" y="160" width="60" height="60"/>
</element>
<element name="lamp34" ref="debug_lamp_standard" state="0">
<bounds x="160" y="160" width="60" height="60"/>
</element>
<element name="lamp35" ref="debug_lamp_standard" state="0">
<bounds x="224" y="160" width="60" height="60"/>
</element>
<element name="lamp36" ref="debug_lamp_standard" state="0">
<bounds x="288" y="160" width="60" height="60"/>
</element>
<element name="lamp37" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="160" width="60" height="60"/>
</element>
<element name="lamp38" ref="debug_lamp_standard" state="0">
<bounds x="416" y="160" width="60" height="60"/>
</element>
<element name="lamp39" ref="debug_lamp_standard" state="0">
<bounds x="480" y="160" width="60" height="60"/>
</element>
<element name="lamp40" ref="debug_lamp_standard" state="0">
<bounds x="544" y="160" width="60" height="60"/>
</element>
<element name="lamp41" ref="debug_lamp_standard" state="0">
<bounds x="608" y="160" width="60" height="60"/>
</element>
<element name="lamp42" ref="debug_lamp_standard" state="0">
<bounds x="672" y="160" width="60" height="60"/>
</element>
<element name="lamp43" ref="debug_lamp_standard" state="0">
<bounds x="736" y="160" width="60" height="60"/>
</element>
<element name="lamp44" ref="debug_lamp_standard" state="0">
<bounds x="800" y="160" width="60" height="60"/>
</element>
<element name="lamp45" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="160" width="60" height="60"/>
</element>
<element name="lamp46" ref="debug_lamp_standard" state="0">
<bounds x="928" y="160" width="60" height="60"/>
</element>
<element name="lamp47" ref="debug_lamp_standard" state="0">
<bounds x="992" y="160" width="60" height="60"/>
</element>
<element name="lamp48" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="224" width="60" height="60"/>
</element>
<element name="lamp49" ref="debug_lamp_button" state="0">
<bounds x="96" y="224" width="60" height="60"/>
</element>
<element name="lamp50" ref="debug_lamp_button" state="0">
<bounds x="160" y="224" width="60" height="60"/>
</element>
<element name="lamp51" ref="debug_lamp_button" state="0">
<bounds x="224" y="224" width="60" height="60"/>
</element>
<element name="lamp52" ref="debug_lamp_button" state="0">
<bounds x="288" y="224" width="60" height="60"/>
</element>
<element name="lamp53" ref="debug_lamp_button" state="0">
<bounds x="352" y="224" width="60" height="60"/>
</element>
<element name="lamp54" ref="debug_lamp_button" state="0">
<bounds x="416" y="224" width="60" height="60"/>
</element>
<element name="lamp55" ref="debug_lamp_standard" state="0">
<bounds x="480" y="224" width="60" height="60"/>
</element>
<element name="lamp56" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="224" width="60" height="60"/>
</element>
<element name="lamp57" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="224" width="60" height="60"/>
</element>
<element name="lamp58" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="224" width="60" height="60"/>
</element>
<element name="lamp59" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="224" width="60" height="60"/>
</element>
<element name="lamp60" ref="debug_lamp_button" state="0">
<bounds x="800" y="224" width="60" height="60"/>
</element>
<element name="lamp61" ref="debug_lamp_button" state="0">
<bounds x="864" y="224" width="60" height="60"/>
</element>
<element name="lamp62" ref="debug_lamp_button" state="0">
<bounds x="928" y="224" width="60" height="60"/>
</element>
<element name="lamp63" ref="debug_lamp_standard" state="0">
<bounds x="992" y="224" width="60" height="60"/>
</element>
<element name="lamp64" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="288" width="60" height="60"/>
</element>
<element name="lamp65" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="288" width="60" height="60"/>
</element>
<element name="lamp66" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="288" width="60" height="60"/>
</element>
<element name="lamp67" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="288" width="60" height="60"/>
</element>
<element name="lamp68" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="288" width="60" height="60"/>
</element>
<element name="lamp69" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="288" width="60" height="60"/>
</element>
<element name="lamp70" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="288" width="60" height="60"/>
</element>
<element name="lamp71" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="288" width="60" height="60"/>
</element>
<element name="lamp72" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="288" width="60" height="60"/>
</element>
<element name="lamp73" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="288" width="60" height="60"/>
</element>
<element name="lamp74" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="288" width="60" height="60"/>
</element>
<element name="lamp75" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="288" width="60" height="60"/>
</element>
<element name="lamp76" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="288" width="60" height="60"/>
</element>
<element name="lamp77" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="288" width="60" height="60"/>
</element>
<element name="lamp78" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="288" width="60" height="60"/>
</element>
<element name="lamp79" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="288" width="60" height="60"/>
</element>
<element name="lamp80" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="352" width="60" height="60"/>
</element>
<element name="lamp81" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="352" width="60" height="60"/>
</element>
<element name="lamp82" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="352" width="60" height="60"/>
</element>
<element name="lamp83" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="352" width="60" height="60"/>
</element>
<element name="lamp84" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="352" width="60" height="60"/>
</element>
<element name="lamp85" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="352" width="60" height="60"/>
</element>
<element name="lamp86" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="352" width="60" height="60"/>
</element>
<element name="lamp87" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="352" width="60" height="60"/>
</element>
<element name="lamp88" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="352" width="60" height="60"/>
</element>
<element name="lamp89" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="352" width="60" height="60"/>
</element>
<element name="lamp90" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="352" width="60" height="60"/>
</element>
<element name="lamp91" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="352" width="60" height="60"/>
</element>
<element name="lamp92" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="352" width="60" height="60"/>
</element>
<element name="lamp93" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="352" width="60" height="60"/>
</element>
<element name="lamp94" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="352" width="60" height="60"/>
</element>
<element name="lamp95" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="352" width="60" height="60"/>
</element>
<element name="lamp96" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="416" width="60" height="60"/>
</element>
<element name="lamp97" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="416" width="60" height="60"/>
</element>
<element name="lamp98" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="416" width="60" height="60"/>
</element>
<element name="lamp99" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="416" width="60" height="60"/>
</element>
<element name="lamp100" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="416" width="60" height="60"/>
</element>
<element name="lamp101" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="416" width="60" height="60"/>
</element>
<element name="lamp102" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="416" width="60" height="60"/>
</element>
<element name="lamp103" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="416" width="60" height="60"/>
</element>
<element name="lamp104" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="416" width="60" height="60"/>
</element>
<element name="lamp105" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="416" width="60" height="60"/>
</element>
<element name="lamp106" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="416" width="60" height="60"/>
</element>
<element name="lamp107" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="416" width="60" height="60"/>
</element>
<element name="lamp108" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="416" width="60" height="60"/>
</element>
<element name="lamp109" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="416" width="60" height="60"/>
</element>
<element name="lamp110" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="416" width="60" height="60"/>
</element>
<element name="lamp111" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="416" width="60" height="60"/>
</element>
<element name="lamp112" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="480" width="60" height="60"/>
</element>
<element name="lamp113" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="480" width="60" height="60"/>
</element>
<element name="lamp114" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="480" width="60" height="60"/>
</element>
<element name="lamp115" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="480" width="60" height="60"/>
</element>
<element name="lamp116" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="480" width="60" height="60"/>
</element>
<element name="lamp117" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="480" width="60" height="60"/>
</element>
<element name="lamp118" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="480" width="60" height="60"/>
</element>
<element name="lamp119" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="480" width="60" height="60"/>
</element>
<element name="lamp120" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="480" width="60" height="60"/>
</element>
<element name="lamp121" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="480" width="60" height="60"/>
</element>
<element name="lamp122" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="480" width="60" height="60"/>
</element>
<element name="lamp123" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="480" width="60" height="60"/>
</element>
<element name="lamp124" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="480" width="60" height="60"/>
</element>
<element name="lamp125" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="480" width="60" height="60"/>
</element>
<element name="lamp126" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="480" width="60" height="60"/>
</element>
<element name="lamp127" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="480" width="60" height="60"/>
</element>
<element name="lamp128" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="544" width="60" height="60"/>
</element>
<element name="lamp129" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="544" width="60" height="60"/>
</element>
<element name="lamp130" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="544" width="60" height="60"/>
</element>
<element name="lamp131" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="544" width="60" height="60"/>
</element>
<element name="lamp132" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="544" width="60" height="60"/>
</element>
<element name="lamp133" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="544" width="60" height="60"/>
</element>
<element name="lamp134" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="544" width="60" height="60"/>
</element>
<element name="lamp135" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="544" width="60" height="60"/>
</element>
<element name="lamp136" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="544" width="60" height="60"/>
</element>
<element name="lamp137" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="544" width="60" height="60"/>
</element>
<element name="lamp138" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="544" width="60" height="60"/>
</element>
<element name="lamp139" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="544" width="60" height="60"/>
</element>
<element name="lamp140" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="544" width="60" height="60"/>
</element>
<element name="lamp141" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="544" width="60" height="60"/>
</element>
<element name="lamp142" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="544" width="60" height="60"/>
</element>
<element name="lamp143" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="544" width="60" height="60"/>
</element>
<element name="lamp144" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="608" width="60" height="60"/>
</element>
<element name="lamp145" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="608" width="60" height="60"/>
</element>
<element name="lamp146" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="608" width="60" height="60"/>
</element>
<element name="lamp147" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="608" width="60" height="60"/>
</element>
<element name="lamp148" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="608" width="60" height="60"/>
</element>
<element name="lamp149" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="608" width="60" height="60"/>
</element>
<element name="lamp150" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="608" width="60" height="60"/>
</element>
<element name="lamp151" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="608" width="60" height="60"/>
</element>
<element name="lamp152" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="608" width="60" height="60"/>
</element>
<element name="lamp153" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="608" width="60" height="60"/>
</element>
<element name="lamp154" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="608" width="60" height="60"/>
</element>
<element name="lamp155" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="608" width="60" height="60"/>
</element>
<element name="lamp156" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="608" width="60" height="60"/>
</element>
<element name="lamp157" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="608" width="60" height="60"/>
</element>
<element name="lamp158" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="608" width="60" height="60"/>
</element>
<element name="lamp159" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="608" width="60" height="60"/>
</element>
<element name="lamp160" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="672" width="60" height="60"/>
</element>
<element name="lamp161" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="672" width="60" height="60"/>
</element>
<element name="lamp162" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="672" width="60" height="60"/>
</element>
<element name="lamp163" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="672" width="60" height="60"/>
</element>
<element name="lamp164" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="672" width="60" height="60"/>
</element>
<element name="lamp165" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="672" width="60" height="60"/>
</element>
<element name="lamp166" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="672" width="60" height="60"/>
</element>
<element name="lamp167" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="672" width="60" height="60"/>
</element>
<element name="lamp168" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="672" width="60" height="60"/>
</element>
<element name="lamp169" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="672" width="60" height="60"/>
</element>
<element name="lamp170" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="672" width="60" height="60"/>
</element>
<element name="lamp171" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="672" width="60" height="60"/>
</element>
<element name="lamp172" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="672" width="60" height="60"/>
</element>
<element name="lamp173" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="672" width="60" height="60"/>
</element>
<element name="lamp174" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="672" width="60" height="60"/>
</element>
<element name="lamp175" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="672" width="60" height="60"/>
</element>
<element name="lamp176" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="736" width="60" height="60"/>
</element>
<element name="lamp177" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="736" width="60" height="60"/>
</element>
<element name="lamp178" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="736" width="60" height="60"/>
</element>
<element name="lamp179" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="736" width="60" height="60"/>
</element>
<element name="lamp180" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="736" width="60" height="60"/>
</element>
<element name="lamp181" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="736" width="60" height="60"/>
</element>
<element name="lamp182" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="736" width="60" height="60"/>
</element>
<element name="lamp183" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="736" width="60" height="60"/>
</element>
<element name="lamp184" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="736" width="60" height="60"/>
</element>
<element name="lamp185" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="736" width="60" height="60"/>
</element>
<element name="lamp186" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="736" width="60" height="60"/>
</element>
<element name="lamp187" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="736" width="60" height="60"/>
</element>
<element name="lamp188" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="736" width="60" height="60"/>
</element>
<element name="lamp189" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="736" width="60" height="60"/>
</element>
<element name="lamp190" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="736" width="60" height="60"/>
</element>
<element name="lamp191" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="736" width="60" height="60"/>
</element>
<element name="lamp192" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="800" width="60" height="60"/>
</element>
<element name="lamp193" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="800" width="60" height="60"/>
</element>
<element name="lamp194" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="800" width="60" height="60"/>
</element>
<element name="lamp195" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="800" width="60" height="60"/>
</element>
<element name="lamp196" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="800" width="60" height="60"/>
</element>
<element name="lamp197" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="800" width="60" height="60"/>
</element>
<element name="lamp198" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="800" width="60" height="60"/>
</element>
<element name="lamp199" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="800" width="60" height="60"/>
</element>
<element name="lamp200" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="800" width="60" height="60"/>
</element>
<element name="lamp201" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="800" width="60" height="60"/>
</element>
<element name="lamp202" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="800" width="60" height="60"/>
</element>
<element name="lamp203" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="800" width="60" height="60"/>
</element>
<element name="lamp204" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="800" width="60" height="60"/>
</element>
<element name="lamp205" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="800" width="60" height="60"/>
</element>
<element name="lamp206" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="800" width="60" height="60"/>
</element>
<element name="lamp207" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="800" width="60" height="60"/>
</element>
<element name="lamp208" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="864" width="60" height="60"/>
</element>
<element name="lamp209" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="864" width="60" height="60"/>
</element>
<element name="lamp210" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="864" width="60" height="60"/>
</element>
<element name="lamp211" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="864" width="60" height="60"/>
</element>
<element name="lamp212" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="864" width="60" height="60"/>
</element>
<element name="lamp213" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="864" width="60" height="60"/>
</element>
<element name="lamp214" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="864" width="60" height="60"/>
</element>
<element name="lamp215" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="864" width="60" height="60"/>
</element>
<element name="lamp216" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="864" width="60" height="60"/>
</element>
<element name="lamp217" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="864" width="60" height="60"/>
</element>
<element name="lamp218" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="864" width="60" height="60"/>
</element>
<element name="lamp219" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="864" width="60" height="60"/>
</element>
<element name="lamp220" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="864" width="60" height="60"/>
</element>
<element name="lamp221" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="864" width="60" height="60"/>
</element>
<element name="lamp222" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="864" width="60" height="60"/>
</element>
<element name="lamp223" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="864" width="60" height="60"/>
</element>
<element name="lamp224" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="928" width="60" height="60"/>
</element>
<element name="lamp225" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="928" width="60" height="60"/>
</element>
<element name="lamp226" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="928" width="60" height="60"/>
</element>
<element name="lamp227" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="928" width="60" height="60"/>
</element>
<element name="lamp228" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="928" width="60" height="60"/>
</element>
<element name="lamp229" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="928" width="60" height="60"/>
</element>
<element name="lamp230" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="928" width="60" height="60"/>
</element>
<element name="lamp231" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="928" width="60" height="60"/>
</element>
<element name="lamp232" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="928" width="60" height="60"/>
</element>
<element name="lamp233" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="928" width="60" height="60"/>
</element>
<element name="lamp234" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="928" width="60" height="60"/>
</element>
<element name="lamp235" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="928" width="60" height="60"/>
</element>
<element name="lamp236" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="928" width="60" height="60"/>
</element>
<element name="lamp237" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="928" width="60" height="60"/>
</element>
<element name="lamp238" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="928" width="60" height="60"/>
</element>
<element name="lamp239" ref="debug_lamp_unreferenced" state="0">
<bounds x="992" y="928" width="60" height="60"/>
</element>
<element name="lamp240" ref="debug_lamp_unreferenced" state="0">
<bounds x="32" y="992" width="60" height="60"/>
</element>
<element name="lamp241" ref="debug_lamp_unreferenced" state="0">
<bounds x="96" y="992" width="60" height="60"/>
</element>
<element name="lamp242" ref="debug_lamp_unreferenced" state="0">
<bounds x="160" y="992" width="60" height="60"/>
</element>
<element name="lamp243" ref="debug_lamp_unreferenced" state="0">
<bounds x="224" y="992" width="60" height="60"/>
</element>
<element name="lamp244" ref="debug_lamp_unreferenced" state="0">
<bounds x="288" y="992" width="60" height="60"/>
</element>
<element name="lamp245" ref="debug_lamp_unreferenced" state="0">
<bounds x="352" y="992" width="60" height="60"/>
</element>
<element name="lamp246" ref="debug_lamp_unreferenced" state="0">
<bounds x="416" y="992" width="60" height="60"/>
</element>
<element name="lamp247" ref="debug_lamp_unreferenced" state="0">
<bounds x="480" y="992" width="60" height="60"/>
</element>
<element name="lamp248" ref="debug_lamp_unreferenced" state="0">
<bounds x="544" y="992" width="60" height="60"/>
</element>
<element name="lamp249" ref="debug_lamp_unreferenced" state="0">
<bounds x="608" y="992" width="60" height="60"/>
</element>
<element name="lamp250" ref="debug_lamp_unreferenced" state="0">
<bounds x="672" y="992" width="60" height="60"/>
</element>
<element name="lamp251" ref="debug_lamp_unreferenced" state="0">
<bounds x="736" y="992" width="60" height="60"/>
</element>
<element name="lamp252" ref="debug_lamp_unreferenced" state="0">
<bounds x="800" y="992" width="60" height="60"/>
</element>
<element name="lamp253" ref="debug_lamp_unreferenced" state="0">
<bounds x="864" y="992" width="60" height="60"/>
</element>
<element name="lamp254" ref="debug_lamp_unreferenced" state="0">
<bounds x="928" y="992" width="60" height="60"/>
</element>
<element name="lamp255" ref="debug_lamp_segment" state="0">
<bounds x="992" y="992" width="60" height="60"/>
</element>
<repeat count="16">
<param name="s" start="0" increment="16" />
<param name="y" start="47" increment="64" />
<repeat count="16">
<param name="n" start="~s~" increment="1" />
<param name="x" start="47" increment="64" />
<element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~">
<bounds x="~x~" y="~y~" width="30" height="30"/>
</element>
</repeat>
</repeat>
<element name="lamp54" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="660" width="80" height="44"/>
</element>
<element name="lamp61" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="660" width="80" height="44"/>
</element>
<element name="lamp50" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="660" width="80" height="44"/>
</element>
<element name="lamp51" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="660" width="80" height="44"/>
</element>
<element name="lamp52" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="660" width="80" height="44"/>
</element>
<element name="lamp53" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="660" width="80" height="44"/>
</element>
<element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="660" width="80" height="44"/>
</element>
<element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="660" width="80" height="44"/>
</element>
<element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="708" width="80" height="44"/>
</element>
<element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="708" width="80" height="44"/>
</element>
<element name="lamp60" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="708" width="80" height="44"/>
</element>
<element name="lamp62" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="708" width="80" height="44"/>
</element>
<element name="lamp49" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="708" width="80" height="44"/>
</element>
<element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="708" width="80" height="44"/>
</element>
<element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="708" width="80" height="44"/>
</element>
<element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="708" width="80" height="44"/>
</element>
<element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="756" width="80" height="44"/>
</element>
<element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="756" width="80" height="44"/>
</element>
<element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="756" width="80" height="44"/>
</element>
<element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="756" width="80" height="44"/>
</element>
<element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="756" width="80" height="44"/>
</element>
<element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="756" width="80" height="44"/>
</element>
<element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="756" width="80" height="44"/>
</element>
<element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="756" width="80" height="44"/>
</element>
<element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="804" width="80" height="44"/>
</element>
<element name="debug_button_25" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="804" width="80" height="44"/>
</element>
<element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="804" width="80" height="44"/>
</element>
<element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="804" width="80" height="44"/>
</element>
<element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="804" width="80" height="44"/>
</element>
<element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="804" width="80" height="44"/>
</element>
<element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="804" width="80" height="44"/>
</element>
<element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="804" width="80" height="44"/>
</element>
<element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="852" width="80" height="44"/>
</element>
<element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="852" width="80" height="44"/>
</element>
<element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="852" width="80" height="44"/>
</element>
<element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="852" width="80" height="44"/>
</element>
<element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="852" width="80" height="44"/>
</element>
<element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="852" width="80" height="44"/>
</element>
<element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="852" width="80" height="44"/>
</element>
<element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="852" width="80" height="44"/>
</element>
<element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="900" width="80" height="44"/>
</element>
<element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="900" width="80" height="44"/>
</element>
<element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="900" width="80" height="44"/>
</element>
<element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="900" width="80" height="44"/>
</element>
<element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="900" width="80" height="44"/>
</element>
<element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="900" width="80" height="44"/>
</element>
<element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="900" width="80" height="44"/>
</element>
<element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="900" width="80" height="44"/>
</element>
<element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="948" width="80" height="44"/>
</element>
<element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="948" width="80" height="44"/>
</element>
<element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="948" width="80" height="44"/>
</element>
<element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="948" width="80" height="44"/>
</element>
<element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="948" width="80" height="44"/>
</element>
<element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="948" width="80" height="44"/>
</element>
<element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="948" width="80" height="44"/>
</element>
<element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="948" width="80" height="44"/>
</element>
<element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
<bounds x="1100" y="996" width="80" height="44"/>
</element>
<element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
<bounds x="1184" y="996" width="80" height="44"/>
</element>
<element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
<bounds x="1268" y="996" width="80" height="44"/>
</element>
<element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
<bounds x="1352" y="996" width="80" height="44"/>
</element>
<element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
<bounds x="1436" y="996" width="80" height="44"/>
</element>
<element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
<bounds x="1520" y="996" width="80" height="44"/>
</element>
<element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
<bounds x="1604" y="996" width="80" height="44"/>
</element>
<element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
<bounds x="1688" y="996" width="80" height="44"/>
</element>
<repeat count="8">
<param name="s" start="0" increment="8" />
<param name="y" start="671" increment="48" />
<repeat count="8">
<param name="n" start="~s~" increment="1" />
<param name="x" start="1120" increment="84" />
<element name="debug_button_label_~n~" ref="debug_button_label_~n~">
<bounds x="~x~" y="~y~" width="40" height="22"/>
</element>
</repeat>
</repeat>
<repeat count="16">
<param name="n" start="15" increment="-1" />
<param name="x" start="1150" increment="32" />
<element name="vfd~n~" ref="debug_vfd" state="0">
<bounds x="~x~" y="600" width="32" height="48"/>
</element>
</repeat>
<element ref="reel_background">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
<element name="sreel1" ref="reel0" state="0">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
<element ref="reel_background">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
<element name="sreel2" ref="reel1" state="0">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
<element ref="reel_background">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
<element name="sreel3" ref="reel2" state="0">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
<element name="reel1" ref="debug_stepper_value">
<bounds x="1100" y="272" width="50" height="30"/>
</element>
<element name="reel2" ref="debug_stepper_value">
<bounds x="1240" y="272" width="50" height="30"/>
</element>
<element name="reel3" ref="debug_stepper_value">
<bounds x="1380" y="272" width="50" height="30"/>
</element>
<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_0">
<bounds x="1180" y="272" width="50" height="30"/>
</element>
<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_1">
<bounds x="1320" y="272" width="50" height="30"/>
</element>
<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_2">
<bounds x="1460" y="272" width="50" height="30"/>
</element>
</view>
</mamelayout>