diff options
author | 2022-06-14 17:24:46 +1000 | |
---|---|---|
committer | 2022-06-14 17:24:46 +1000 | |
commit | 540426ea9172304ab0f3961832ef1dfafa6027e8 (patch) | |
tree | e98956f7bb564f90726204be052f7dfad4da79b6 | |
parent | 6741eca4d61627072710dc86f458f34a3acf7c5c (diff) |
Various cleanups:
* vsystem.cpp: Modernised code a little.
* upscope.cpp: Put code in anonymous namespace.
* Reduced redundancy in more fruit machine layouts.
76 files changed, 2855 insertions, 70459 deletions
diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 2f6e806c280..4b00d42849e 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -4498,8 +4498,6 @@ files { MAME_DIR .. "src/mame/video/ojankohs.cpp", MAME_DIR .. "src/mame/drivers/pipedrm.cpp", MAME_DIR .. "src/mame/drivers/rpunch.cpp", - MAME_DIR .. "src/mame/includes/rpunch.h", - MAME_DIR .. "src/mame/video/rpunch.cpp", MAME_DIR .. "src/mame/drivers/suprslam.cpp", MAME_DIR .. "src/mame/includes/suprslam.h", MAME_DIR .. "src/mame/video/suprslam.cpp", diff --git a/src/mame/drivers/rpunch.cpp b/src/mame/drivers/rpunch.cpp index 7ac6b4de1b5..82c1fe5340d 100644 --- a/src/mame/drivers/rpunch.cpp +++ b/src/mame/drivers/rpunch.cpp @@ -107,48 +107,404 @@ #include "emu.h" -#include "includes/rpunch.h" +// mame +#include "video/vsystem_gga.h" + +// devices #include "cpu/m68000/m68000.h" #include "cpu/z80/z80.h" +#include "machine/gen_latch.h" #include "machine/input_merger.h" +#include "sound/upd7759.h" #include "sound/ymopm.h" + +// emu +#include "emupal.h" +#include "screen.h" +#include "tilemap.h" #include "speaker.h" +namespace { + #define MASTER_CLOCK XTAL(16'000'000) #define VIDEO_CLOCK XTAL(13'333'000) +class rpunch_state : public driver_device +{ +public: + rpunch_state(const machine_config &mconfig, device_type type, const char *tag) : + driver_device(mconfig, type, tag), + m_maincpu(*this, "maincpu"), + m_audiocpu(*this, "audiocpu"), + m_soundlatch(*this, "soundlatch"), + m_upd7759(*this, "upd"), + m_gfxdecode(*this, "gfxdecode"), + m_screen(*this, "screen"), + m_palette(*this, "palette"), + m_gga(*this, "gga"), + m_videoram(*this, "videoram"), + m_spriteram(*this, "spriteram"), + m_hi_bits(*this, "SERVICE") + { } + + void rpunch(machine_config &config); + void svolleybl(machine_config &config); + + DECLARE_CUSTOM_INPUT_MEMBER(hi_bits_r) { return m_hi_bits->read(); } + +protected: + required_device<cpu_device> m_maincpu; + required_device<cpu_device> m_audiocpu; + required_device<generic_latch_8_device> m_soundlatch; + optional_device<upd7759_device> m_upd7759; + required_device<gfxdecode_device> m_gfxdecode; + required_device<screen_device> m_screen; + required_device<palette_device> m_palette; + required_device<vsystem_gga_device> m_gga; + + required_shared_ptr<u16> m_videoram; + required_shared_ptr<u16> m_spriteram; + + required_ioport m_hi_bits; + + tilemap_t *m_background[2]{}; + + void set_sprite_palette(int val) { m_sprite_palette = val; } + void set_sprite_xoffs(int val) { m_sprite_xoffs = val; } + + virtual void machine_start() override; + + void svolley_map(address_map &map); + void rpunch_map(address_map &map); + void svolleybl_main_map(address_map &map); + void sound_map(address_map &map); + void svolleybl_sound_map(address_map &map); + +private: + // hardware configuration + int m_sprite_palette = 0; + int m_sprite_xoffs = 0; + + u8 m_upd_rom_bank = 0; + u16 m_videoflags = 0; + u8 m_sprite_pri = 0; + u8 m_sprite_num = 0; + std::unique_ptr<bitmap_ind16> m_pixmap; + emu_timer *m_crtc_timer = nullptr; + + u16 sound_busy_r(); + u8 pixmap_r(offs_t offset); + void pixmap_w(offs_t offset, u8 data); + void videoram_w(offs_t offset, u16 data, u16 mem_mask = ~0); + void videoreg_w(offs_t offset, u16 data, u16 mem_mask = ~0); + void scrollreg_w(offs_t offset, u16 data, u16 mem_mask = ~0); + void gga_w(offs_t offset, u8 data); + void gga_data_w(offs_t offset, u8 data); + void sprite_ctrl_w(offs_t offset, u8 data); + void upd_control_w(u8 data); + void upd_data_w(u8 data); + TILE_GET_INFO_MEMBER(get_bg0_tile_info); + TILE_GET_INFO_MEMBER(get_bg1_tile_info); + + u32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + TIMER_CALLBACK_MEMBER(crtc_interrupt_gen); + void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect); + void draw_bitmap(bitmap_ind16 &bitmap, const rectangle &cliprect); +}; + + +class svolley_state : public rpunch_state +{ +public: + svolley_state(const machine_config &mconfig, device_type type, const char *tag) : + rpunch_state(mconfig, type, tag) + { + } + + void svolley(machine_config &config); + +protected: + virtual void machine_start() override; +}; + + /************************************* * - * Machine initialization + * Tilemap callbacks * *************************************/ -void rpunch_state::machine_start() +TILE_GET_INFO_MEMBER(rpunch_state::get_bg0_tile_info) { - save_item(NAME(m_upd_rom_bank)); - save_item(NAME(m_sprite_xoffs)); - save_item(NAME(m_videoflags)); - save_item(NAME(m_sprite_pri)); - save_item(NAME(m_sprite_num)); + const u16 data = m_videoram[tile_index]; + int code; + if (m_videoflags & 0x0400) code = (data & 0x0fff) | 0x2000; + else code = (data & 0x1fff); + + tileinfo.set(0, + code, + ((m_videoflags & 0x0010) >> 1) | ((data >> 13) & 7), + 0); +} + +TILE_GET_INFO_MEMBER(rpunch_state::get_bg1_tile_info) +{ + const u16 data = m_videoram[0x1000 | tile_index]; + int code; + if (m_videoflags & 0x0800) code = (data & 0x0fff) | 0x2000; + else code = (data & 0x1fff); + + tileinfo.set(1, + code, + ((m_videoflags & 0x0020) >> 2) | ((data >> 13) & 7), + 0); +} + + +/************************************* + * + * Video system start + * + *************************************/ + +TIMER_CALLBACK_MEMBER(rpunch_state::crtc_interrupt_gen) +{ + m_maincpu->set_input_line(1, HOLD_LINE); + if (param != 0) + m_crtc_timer->adjust(m_screen->frame_period() / param, 0, m_screen->frame_period() / param); } -void rpunch_state::machine_reset() + +/************************************* + * + * Write handlers + * + *************************************/ + +u8 rpunch_state::pixmap_r(offs_t offset) +{ + const int sy = offset >> 8; + const int sx = (offset & 0xff) << 1; + + return ((m_pixmap->pix(sy & 0xff, sx & ~1) & 0xf) << 4) | (m_pixmap->pix(sy & 0xff, sx | 1) & 0xf); +} + +void rpunch_state::pixmap_w(offs_t offset, u8 data) +{ + const int sy = offset >> 8; + const int sx = (offset & 0xff) << 1; + + m_pixmap->pix(sy & 0xff, sx & ~1) = ((data & 0xf0) >> 4); + m_pixmap->pix(sy & 0xff, sx | 1) = (data & 0x0f); +} + +void rpunch_state::videoram_w(offs_t offset, u16 data, u16 mem_mask) +{ + const int tmap = offset >> 12; + const int tile_index = offset & 0xfff; + COMBINE_DATA(&m_videoram[offset]); + m_background[tmap]->mark_tile_dirty(tile_index); +} + + +void rpunch_state::videoreg_w(offs_t offset, u16 data, u16 mem_mask) +{ + const int oldword = m_videoflags; + COMBINE_DATA(&m_videoflags); + + if (m_videoflags != oldword) + { + /* invalidate tilemaps */ + if ((oldword ^ m_videoflags) & 0x0410) + m_background[0]->mark_all_dirty(); + if ((oldword ^ m_videoflags) & 0x0820) + m_background[1]->mark_all_dirty(); + } +} + + +void rpunch_state::scrollreg_w(offs_t offset, u16 data, u16 mem_mask) +{ + if (ACCESSING_BITS_0_7 && ACCESSING_BITS_8_15) + switch (offset) + { + case 0: + m_background[0]->set_scrolly(0, data & 0x1ff); + break; + + case 1: + m_background[0]->set_scrollx(0, data & 0x1ff); + break; + + case 2: + m_background[1]->set_scrolly(0, data & 0x1ff); + break; + + case 3: + m_background[1]->set_scrollx(0, data & 0x1ff); + break; + } +} + + +void rpunch_state::gga_w(offs_t offset, u8 data) +{ + m_gga->write(offset >> 5, data & 0xff); +} + + +void rpunch_state::gga_data_w(offs_t offset, u8 data) +{ + switch (offset) + { + /* only register we know about.... */ + case 0x0b: + m_crtc_timer->adjust(m_screen->time_until_vblank_start(), (data == 0xc0) ? 2 : 1); + break; + + default: + logerror("CRTC register %02X = %02X\n", offset, data); + break; + } +} + + +void rpunch_state::sprite_ctrl_w(offs_t offset, u8 data) { + if (offset == 0) + { + m_sprite_num = data & 0x3f; + logerror("Number of sprites = %02X\n", data & 0x3f); + } + else + { + m_sprite_pri = data & 0x3f; + logerror("Sprite priority point = %02X\n", data & 0x3f); + } } /************************************* * - * Input ports + * Sprite routines * *************************************/ -CUSTOM_INPUT_MEMBER(rpunch_state::hi_bits_r) +void rpunch_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect) { - return ioport("SERVICE")->read(); + /* draw the sprites */ + int offs = m_sprite_num; + while (offs > 0) + { + offs--; + const u32 ram = offs << 2; + u32 pri = 0; // above everything except direct mapped bitmap + /* this seems like the most plausible explanation */ + if (offs < m_sprite_pri) + pri |= GFX_PMASK_2; // behind foreground + + const u16 data1 = m_spriteram[ram + 1]; + const u32 code = data1 & 0x7ff; + + const u16 data0 = m_spriteram[ram + 0]; + const u16 data2 = m_spriteram[ram + 2]; + int x = (data2 & 0x1ff) + 8; + int y = 513 - (data0 & 0x1ff); + const bool xflip = data1 & 0x1000; + const bool yflip = data1 & 0x0800; + const u32 color = ((data1 >> 13) & 7) | ((m_videoflags & 0x0040) >> 3); + + if (x > cliprect.max_x) x -= 512; + if (y > cliprect.max_y) y -= 512; + + m_gfxdecode->gfx(2)->prio_transpen(bitmap,cliprect, + code, color + (m_sprite_palette / 16), xflip, yflip, x + m_sprite_xoffs, y, + m_screen->priority(), pri, 15); + } +} + + +/************************************* + * + * Bitmap routines + * + *************************************/ + +void rpunch_state::draw_bitmap(bitmap_ind16 &bitmap, const rectangle &cliprect) +{ + const u32 colourbase = 512 + ((m_videoflags & 0x000f) << 4); + + for (int y = cliprect.min_y; y <= cliprect.max_y; y++) + { + u16 const *const src = &m_pixmap->pix(y & 0xff); + u16 *const dst = &bitmap.pix(y); + for(int x = cliprect.min_x / 4; x <= cliprect.max_x; x++) + { + const u16 pix = src[(x + 4) & 0x1ff]; + if ((pix & 0xf) != 0xf) + dst[x] = colourbase + pix; + } + } +} + + +/************************************* + * + * Main screen refresh + * + *************************************/ + +u32 rpunch_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +{ + screen.priority().fill(0, cliprect); + m_background[0]->draw(screen, bitmap, cliprect, 0,1); + m_background[1]->draw(screen, bitmap, cliprect, 0,2); + draw_sprites(bitmap, cliprect); + draw_bitmap(bitmap, cliprect); + return 0; +} + + +/************************************* + * + * Machine initialization + * + *************************************/ + +void rpunch_state::machine_start() +{ + m_videoflags = 0; + + /* allocate tilemaps for the backgrounds */ + m_background[0] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(rpunch_state::get_bg0_tile_info)), TILEMAP_SCAN_COLS, 8, 8, 64, 64); + m_background[1] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(rpunch_state::get_bg1_tile_info)), TILEMAP_SCAN_COLS, 8, 8, 64, 64); + + /* configure the tilemaps */ + m_background[1]->set_transparent_pen(15); + + m_pixmap = std::make_unique<bitmap_ind16>(512, 256); + + const rectangle pixmap_rect(0,511,0,255); + m_pixmap->fill(0xf, pixmap_rect); + + /* reset the timer */ + m_crtc_timer = timer_alloc(FUNC(rpunch_state::crtc_interrupt_gen), this); + + save_item(NAME(m_upd_rom_bank)); + save_item(NAME(m_videoflags)); + save_item(NAME(m_sprite_pri)); + save_item(NAME(m_sprite_num)); + save_item(NAME(*m_pixmap)); +} + +void svolley_state::machine_start() +{ + rpunch_state::machine_start(); + + m_background[0]->set_scrolldx(8, 0); // aligns middle net sprite with bg as shown in reference } @@ -213,7 +569,6 @@ void rpunch_state::svolley_map(address_map &map) void rpunch_state::rpunch_map(address_map &map) { svolley_map(map); - map.global_mask(0xfffff); map(0x040000, 0x04ffff).rw(FUNC(rpunch_state::pixmap_r), FUNC(rpunch_state::pixmap_w)); // mirrored? } @@ -481,6 +836,8 @@ void rpunch_state::rpunch(machine_config &config) INPUT_MERGER_ANY_HIGH(config, "soundirq").output_handler().set_inputline(m_audiocpu, 0); /* video hardware */ + set_sprite_palette(0x300); + SCREEN(config, m_screen, SCREEN_TYPE_RASTER); m_screen->set_refresh_hz(60); m_screen->set_size(304, 224); @@ -494,8 +851,6 @@ void rpunch_state::rpunch(machine_config &config) VSYSTEM_GGA(config, m_gga, VIDEO_CLOCK/2); // verified from rpunch schematics m_gga->write_cb().set(FUNC(rpunch_state::gga_data_w)); - MCFG_VIDEO_START_OVERRIDE(rpunch_state,rpunch) - /* sound hardware */ SPEAKER(config, "mono").front_center(); @@ -507,15 +862,21 @@ void rpunch_state::rpunch(machine_config &config) UPD7759(config, m_upd7759).add_route(ALL_OUTPUTS, "mono", 0.50); } -void rpunch_state::svolley(machine_config &config) + +// the main differences between Super Volleyball and Rabbit Punch are +// the lack of direct-mapped bitmap and a different palette base for sprites +void svolley_state::svolley(machine_config &config) { rpunch(config); - m_maincpu->set_addrmap(AS_PROGRAM, &rpunch_state::svolley_map); - MCFG_VIDEO_START_OVERRIDE(rpunch_state,svolley) + + m_maincpu->set_addrmap(AS_PROGRAM, &svolley_state::svolley_map); + + set_sprite_palette(0x080); + set_sprite_xoffs(-4); // aligns middle net sprite with bg as shown in reference } -// c+p of above for now, bootleg hw, things need verifying +// FIXME: copy/paste of above for now, bootleg hardware, things need verifying void rpunch_state::svolleybl(machine_config &config) { /* basic machine hardware */ @@ -529,6 +890,8 @@ void rpunch_state::svolleybl(machine_config &config) m_soundlatch->data_pending_callback().set_inputline(m_audiocpu, 0); /* video hardware */ + set_sprite_palette(0x080); + SCREEN(config, m_screen, SCREEN_TYPE_RASTER); m_screen->set_refresh_hz(60); m_screen->set_size(304, 224); @@ -542,10 +905,7 @@ void rpunch_state::svolleybl(machine_config &config) VSYSTEM_GGA(config, m_gga, VIDEO_CLOCK/2); m_gga->write_cb().set(FUNC(rpunch_state::gga_data_w)); - MCFG_VIDEO_START_OVERRIDE(rpunch_state,rpunch) - /* sound hardware */ - SPEAKER(config, "mono").front_center(); ym2151_device &ymsnd(YM2151(config, "ymsnd", MASTER_CLOCK/4)); @@ -785,25 +1145,7 @@ ROM_START( svolleybl ) ROM_LOAD( "1-snd.bin", 0x10000, 0x08000, CRC(009d7157) SHA1(2cdda7094c7476289d75a78ee25b34fa3b3225c0) ) // matches 2.ic141 from spikes91, when halved ROM_END - -/************************************* - * - * Driver initialization - * - *************************************/ - -void rpunch_state::init_rabiolep() -{ - m_sprite_palette = 0x300; -} - - -void rpunch_state::init_svolley() -{ - /* the main differences between Super Volleyball and Rabbit Punch are */ - /* the lack of direct-mapped bitmap and a different palette base for sprites */ - m_sprite_palette = 0x080; -} +} // anonymous namespace @@ -813,12 +1155,13 @@ void rpunch_state::init_svolley() * *************************************/ -GAME( 1987, rabiolep, 0, rpunch, rabiolep, rpunch_state, init_rabiolep, ROT0, "V-System Co.", "Rabio Lepus (Japan)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) -GAME( 1987, rpunch, rabiolep, rpunch, rpunch, rpunch_state, init_rabiolep, ROT0, "V-System Co. (Bally/Midway/Sente license)", "Rabbit Punch (US)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) -GAME( 1989, svolley, 0, svolley, svolley, rpunch_state, init_svolley, ROT0, "V-System Co.", "Super Volleyball (Japan)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) -GAME( 1989, svolleyk, svolley, svolley, svolley, rpunch_state, init_svolley, ROT0, "V-System Co.", "Super Volleyball (Korea)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) -GAME( 1989, svolleyu, svolley, svolley, svolley, rpunch_state, init_svolley, ROT0, "V-System Co. (Data East license)", "Super Volleyball (US)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) +// year name parent machine input class init rot company description flags +GAME( 1987, rabiolep, 0, rpunch, rabiolep, rpunch_state, empty_init, ROT0, "V-System Co.", "Rabio Lepus (Japan)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) +GAME( 1987, rpunch, rabiolep, rpunch, rpunch, rpunch_state, empty_init, ROT0, "V-System Co. (Bally/Midway/Sente license)", "Rabbit Punch (US)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) +GAME( 1989, svolley, 0, svolley, svolley, svolley_state, empty_init, ROT0, "V-System Co.", "Super Volleyball (Japan)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) +GAME( 1989, svolleyk, svolley, svolley, svolley, svolley_state, empty_init, ROT0, "V-System Co.", "Super Volleyball (Korea)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) +GAME( 1989, svolleyu, svolley, svolley, svolley, svolley_state, empty_init, ROT0, "V-System Co. (Data East license)", "Super Volleyball (US)", MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL ) // video registers are changed, and there's some kind of RAM at 090xxx, possible a different sprite scheme for the bootleg (even if the original is intact) // the sound system seems to be ripped from the later Power Spikes (see aerofgt.cpp) -GAME( 1991, svolleybl, svolley, svolleybl, svolley, rpunch_state, init_svolley, ROT0, "bootleg", "Super Volleyball (bootleg)", MACHINE_SUPPORTS_SAVE | MACHINE_NOT_WORKING | MACHINE_NO_SOUND | MACHINE_NO_COCKTAIL ) // aka 1991 Spikes? +GAME( 1991, svolleybl, svolley, svolleybl, svolley, rpunch_state, empty_init, ROT0, "bootleg", "Super Volleyball (bootleg)", MACHINE_SUPPORTS_SAVE | MACHINE_NOT_WORKING | MACHINE_NO_SOUND | MACHINE_NO_COCKTAIL ) // aka 1991 Spikes? diff --git a/src/mame/drivers/upscope.cpp b/src/mame/drivers/upscope.cpp index 5753608dde1..3b28d895628 100644 --- a/src/mame/drivers/upscope.cpp +++ b/src/mame/drivers/upscope.cpp @@ -27,13 +27,17 @@ #include "emu.h" #include "includes/amiga.h" + #include "cpu/m68000/m68000.h" +#include "machine/amigafdc.h" #include "machine/i8255.h" #include "machine/nvram.h" -#include "machine/amigafdc.h" + #include "speaker.h" +namespace { + class upscope_state : public amiga_state { public: @@ -373,6 +377,8 @@ void upscope_state::init_upscope() subdevice<nvram_device>("nvram")->set_base(m_nvram, sizeof(m_nvram)); } +} // anonymous namespace + /************************************* diff --git a/src/mame/includes/rpunch.h b/src/mame/includes/rpunch.h deleted file mode 100644 index c3ac0621d02..00000000000 --- a/src/mame/includes/rpunch.h +++ /dev/null @@ -1,96 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Aaron Giles -#ifndef MAME_INCLUDES_RPUNCH_H -#define MAME_INCLUDES_RPUNCH_H - -#pragma once - -#include "machine/gen_latch.h" -#include "sound/upd7759.h" -#include "video/vsystem_gga.h" -#include "emupal.h" -#include "screen.h" -#include "tilemap.h" - -class rpunch_state : public driver_device -{ -public: - rpunch_state(const machine_config &mconfig, device_type type, const char *tag) : - driver_device(mconfig, type, tag), - m_maincpu(*this, "maincpu"), - m_audiocpu(*this, "audiocpu"), - m_soundlatch(*this, "soundlatch"), - m_upd7759(*this, "upd"), - m_gfxdecode(*this, "gfxdecode"), - m_screen(*this, "screen"), - m_palette(*this, "palette"), - m_gga(*this, "gga"), - m_videoram(*this, "videoram"), - m_spriteram(*this, "spriteram") - { } - - void svolley(machine_config &config); - void rpunch(machine_config &config); - void svolleybl(machine_config &config); - - void init_rabiolep(); - void init_svolley(); - - DECLARE_CUSTOM_INPUT_MEMBER(hi_bits_r); - -protected: - virtual void machine_start() override; - virtual void machine_reset() override; - -private: - required_device<cpu_device> m_maincpu; - required_device<cpu_device> m_audiocpu; - required_device<generic_latch_8_device> m_soundlatch; - optional_device<upd7759_device> m_upd7759; - required_device<gfxdecode_device> m_gfxdecode; - required_device<screen_device> m_screen; - required_device<palette_device> m_palette; - required_device<vsystem_gga_device> m_gga; - - required_shared_ptr<u16> m_videoram; - required_shared_ptr<u16> m_spriteram; - - u8 m_upd_rom_bank = 0; - int m_sprite_palette = 0; - int m_sprite_xoffs = 0; - u16 m_videoflags = 0; - u8 m_sprite_pri = 0; - u8 m_sprite_num = 0; - tilemap_t *m_background[2]{}; - std::unique_ptr<bitmap_ind16> m_pixmap; - emu_timer *m_crtc_timer = nullptr; - - u16 sound_busy_r(); - u8 pixmap_r(offs_t offset); - void pixmap_w(offs_t offset, u8 data); - void videoram_w(offs_t offset, u16 data, u16 mem_mask = ~0); - void videoreg_w(offs_t offset, u16 data, u16 mem_mask = ~0); - void scrollreg_w(offs_t offset, u16 data, u16 mem_mask = ~0); - void gga_w(offs_t offset, u8 data); - void gga_data_w(offs_t offset, u8 data); - void sprite_ctrl_w(offs_t offset, u8 data); - void upd_control_w(u8 data); - void upd_data_w(u8 data); - TILE_GET_INFO_MEMBER(get_bg0_tile_info); - TILE_GET_INFO_MEMBER(get_bg1_tile_info); - - DECLARE_VIDEO_START(rpunch); - DECLARE_VIDEO_START(svolley); - - u32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - TIMER_CALLBACK_MEMBER(crtc_interrupt_gen); - void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect); - void draw_bitmap(bitmap_ind16 &bitmap, const rectangle &cliprect); - void sound_map(address_map &map); - void rpunch_map(address_map &map); - void svolley_map(address_map &map); - void svolleybl_main_map(address_map &map); - void svolleybl_sound_map(address_map &map); -}; - -#endif // MAME_INCLUDES_RPUNCH_H diff --git a/src/mame/layout/m5ratpka.lay b/src/mame/layout/m5ratpka.lay index 3859746fb6f..fd21cc4130e 100644 --- a/src/mame/layout/m5ratpka.lay +++ b/src/mame/layout/m5ratpka.lay @@ -5401,1974 +5401,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5razdz10.lay b/src/mame/layout/m5razdz10.lay index 4aa3a86bbf0..937c74d5046 100644 --- a/src/mame/layout/m5razdz10.lay +++ b/src/mame/layout/m5razdz10.lay @@ -2552,1974 +2552,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5redbal.lay b/src/mame/layout/m5redbal.lay index bfb36c0bfbd..308a46c1c0e 100644 --- a/src/mame/layout/m5redbal.lay +++ b/src/mame/layout/m5redbal.lay @@ -1550,1974 +1550,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </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_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </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_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5redrcka.lay b/src/mame/layout/m5redrcka.lay index 6178f47b6be..e97d097a1c1 100644 --- a/src/mame/layout/m5redrcka.lay +++ b/src/mame/layout/m5redrcka.lay @@ -4441,1974 +4441,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_segment" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_segment" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_reel" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_reel" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_reel" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_reel" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_reel" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_reel" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_reel" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_reel" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5resfrg.lay b/src/mame/layout/m5resfrg.lay index 1181ce43195..aec725f2121 100644 --- a/src/mame/layout/m5resfrg.lay +++ b/src/mame/layout/m5resfrg.lay @@ -4212,1974 +4212,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_reel" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_reel" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_reel" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_reel" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_reel" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_reel" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_reel" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_reel" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5revo13.lay b/src/mame/layout/m5revo13.lay index 28e04a08851..29f0fa7c930 100644 --- a/src/mame/layout/m5revo13.lay +++ b/src/mame/layout/m5revo13.lay @@ -3745,1974 +3745,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_reel" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5rfymc.lay b/src/mame/layout/m5rfymc.lay index e82b5899f43..a13c1c66423 100644 --- a/src/mame/layout/m5rfymc.lay +++ b/src/mame/layout/m5rfymc.lay @@ -2038,1974 +2038,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </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_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5rgclb12.lay b/src/mame/layout/m5rgclb12.lay index 3b5f6184e46..a9177721b44 100644 --- a/src/mame/layout/m5rgclb12.lay +++ b/src/mame/layout/m5rgclb12.lay @@ -1770,1974 +1770,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5rhrgt02.lay b/src/mame/layout/m5rhrgt02.lay index 0419363ec19..3ba49b96929 100644 --- a/src/mame/layout/m5rhrgt02.lay +++ b/src/mame/layout/m5rhrgt02.lay @@ -696,1974 +696,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </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_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </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_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5ritj.lay b/src/mame/layout/m5ritj.lay index d9384068d38..b09c1dbcfe7 100644 --- a/src/mame/layout/m5ritj.lay +++ b/src/mame/layout/m5ritj.lay @@ -3780,1974 +3780,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5rollup.lay b/src/mame/layout/m5rollup.lay index 05d28f47aa0..fa5923973a4 100644 --- a/src/mame/layout/m5rollup.lay +++ b/src/mame/layout/m5rollup.lay @@ -831,1974 +831,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5rollx.lay b/src/mame/layout/m5rollx.lay index f67339c3b0f..0c192612b58 100644 --- a/src/mame/layout/m5rollx.lay +++ b/src/mame/layout/m5rollx.lay @@ -929,1974 +929,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5rthh.lay b/src/mame/layout/m5rthh.lay index d4ee657eb8c..99ebe2b704b 100644 --- a/src/mame/layout/m5rthh.lay +++ b/src/mame/layout/m5rthh.lay @@ -5632,1974 +5632,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_standard" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5rub.lay b/src/mame/layout/m5rub.lay index 7782046c7ed..e59afb0d008 100644 --- a/src/mame/layout/m5rub.lay +++ b/src/mame/layout/m5rub.lay @@ -1728,1974 +1728,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </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_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5rwb.lay b/src/mame/layout/m5rwb.lay index 4f5fca9a967..9a76f7f0116 100644 --- a/src/mame/layout/m5rwb.lay +++ b/src/mame/layout/m5rwb.lay @@ -898,1974 +898,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </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_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </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_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5scharg.lay b/src/mame/layout/m5scharg.lay index 508a4e0106e..784696a8d5d 100644 --- a/src/mame/layout/m5scharg.lay +++ b/src/mame/layout/m5scharg.lay @@ -4408,1974 +4408,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_button" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="lamp72" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5seven.lay b/src/mame/layout/m5seven.lay index d85a845b225..bccb2eb6e78 100644 --- a/src/mame/layout/m5seven.lay +++ b/src/mame/layout/m5seven.lay @@ -1677,1974 +1677,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_reel" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_reel" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_reel" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5shark.lay b/src/mame/layout/m5shark.lay index 64db2120f84..c29a4b61bc1 100644 --- a/src/mame/layout/m5shark.lay +++ b/src/mame/layout/m5shark.lay @@ -5296,1974 +5296,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </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_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5sheik.lay b/src/mame/layout/m5sheik.lay index fb1aaa294c3..b02aaf2f55c 100644 --- a/src/mame/layout/m5sheik.lay +++ b/src/mame/layout/m5sheik.lay @@ -4476,1974 +4476,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5skulcl20.lay b/src/mame/layout/m5skulcl20.lay index 88eb9b9001e..efdb5a92ed3 100644 --- a/src/mame/layout/m5skulcl20.lay +++ b/src/mame/layout/m5skulcl20.lay @@ -3244,1974 +3244,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_button" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_reel" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="lamp72" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5sondra.lay b/src/mame/layout/m5sondra.lay index ef6e99e763e..c9e85b0d2e6 100644 --- a/src/mame/layout/m5sondra.lay +++ b/src/mame/layout/m5sondra.lay @@ -3576,1974 +3576,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5speccl.lay b/src/mame/layout/m5speccl.lay index d599013d402..033705fe9fc 100644 --- a/src/mame/layout/m5speccl.lay +++ b/src/mame/layout/m5speccl.lay @@ -1616,1974 +1616,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </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_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </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_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5spiker.lay b/src/mame/layout/m5spiker.lay index b264f2db6f4..1f47de2160d 100644 --- a/src/mame/layout/m5spiker.lay +++ b/src/mame/layout/m5spiker.lay @@ -5071,1974 +5071,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_button" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp184" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5spins.lay b/src/mame/layout/m5spins.lay index eb020bc8c7e..46edac1bb18 100644 --- a/src/mame/layout/m5spins.lay +++ b/src/mame/layout/m5spins.lay @@ -2033,1974 +2033,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </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_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </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_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5squids06.lay b/src/mame/layout/m5squids06.lay index 4353a0423f5..e2e5f6c526c 100644 --- a/src/mame/layout/m5squids06.lay +++ b/src/mame/layout/m5squids06.lay @@ -4916,1974 +4916,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5sstrk.lay b/src/mame/layout/m5sstrk.lay index b43bfb13c47..57e45f2bdf0 100644 --- a/src/mame/layout/m5sstrk.lay +++ b/src/mame/layout/m5sstrk.lay @@ -949,1974 +949,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_button" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_button" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_button" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_button" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_button" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="lamp0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp8" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp9" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp10" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp17" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp18" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </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_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </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_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </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_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </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_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </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_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </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_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </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_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5starcl.lay b/src/mame/layout/m5starcl.lay index 3409a5b2f59..985c203d2dd 100644 --- a/src/mame/layout/m5starcl.lay +++ b/src/mame/layout/m5starcl.lay @@ -931,1974 +931,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5stars26.lay b/src/mame/layout/m5stars26.lay index bec5767ac81..ea9c46ec5cd 100644 --- a/src/mame/layout/m5stars26.lay +++ b/src/mame/layout/m5stars26.lay @@ -891,1974 +891,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5stax.lay b/src/mame/layout/m5stax.lay index 3eb7bec5746..ae56f1eb227 100644 --- a/src/mame/layout/m5stax.lay +++ b/src/mame/layout/m5stax.lay @@ -2052,1974 +2052,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_standard" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </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_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5supnov.lay b/src/mame/layout/m5supnov.lay index fb29bb3913c..46f202ecae5 100644 --- a/src/mame/layout/m5supnov.lay +++ b/src/mame/layout/m5supnov.lay @@ -3916,1971 +3916,997 @@ <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5supro.lay b/src/mame/layout/m5supro.lay index 5a85b8efeac..55314389247 100644 --- a/src/mame/layout/m5supro.lay +++ b/src/mame/layout/m5supro.lay @@ -599,1974 +599,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </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_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </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_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </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_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5tbird.lay b/src/mame/layout/m5tbird.lay index 10330329ccf..2755a3f6009 100644 --- a/src/mame/layout/m5tbird.lay +++ b/src/mame/layout/m5tbird.lay @@ -3465,1974 +3465,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5tempcl.lay b/src/mame/layout/m5tempcl.lay index 6b5ed35ae40..36bcad59579 100644 --- a/src/mame/layout/m5tempcl.lay +++ b/src/mame/layout/m5tempcl.lay @@ -7518,1974 +7518,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_reel" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_reel" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_reel" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_reel" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_reel" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_reel" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_reel" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_reel" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_reel" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_reel" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_reel" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_reel" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_reel" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_reel" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_reel" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_reel" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_reel" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_reel" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_reel" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_reel" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_reel" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_reel" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_reel" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_reel" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_reel" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_reel" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_reel" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_reel" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_reel" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_reel" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_reel" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_reel" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_reel" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_reel" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_reel" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_reel" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5tempp.lay b/src/mame/layout/m5tempp.lay index ddac86a9f18..38048ed87f0 100644 --- a/src/mame/layout/m5tempp.lay +++ b/src/mame/layout/m5tempp.lay @@ -1812,1974 +1812,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_reel" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_reel" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_reel" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_reel" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_reel" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_reel" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_standard" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5tempt2.lay b/src/mame/layout/m5tempt2.lay index f8304783bff..de714ff7c31 100644 --- a/src/mame/layout/m5tempt2.lay +++ b/src/mame/layout/m5tempt2.lay @@ -3530,1974 +3530,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_reel" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5tictacbwb.lay b/src/mame/layout/m5tictacbwb.lay index 862d5efe39f..012ccc19d07 100644 --- a/src/mame/layout/m5tictacbwb.lay +++ b/src/mame/layout/m5tictacbwb.lay @@ -1255,1974 +1255,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5trail.lay b/src/mame/layout/m5trail.lay index 12c63072c8f..8cc430f3c03 100644 --- a/src/mame/layout/m5trail.lay +++ b/src/mame/layout/m5trail.lay @@ -5377,1974 +5377,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5ultimo04.lay b/src/mame/layout/m5ultimo04.lay index 484781276f8..05db79eefeb 100644 --- a/src/mame/layout/m5ultimo04.lay +++ b/src/mame/layout/m5ultimo04.lay @@ -4072,1974 +4072,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_reel" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5upover.lay b/src/mame/layout/m5upover.lay index 0e3392f88d8..a2d92b8238e 100644 --- a/src/mame/layout/m5upover.lay +++ b/src/mame/layout/m5upover.lay @@ -4033,1974 +4033,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5vampup.lay b/src/mame/layout/m5vampup.lay index d14d6814b74..2fe591ee8cf 100644 --- a/src/mame/layout/m5vampup.lay +++ b/src/mame/layout/m5vampup.lay @@ -3661,1974 +3661,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5vertgo.lay b/src/mame/layout/m5vertgo.lay index 6f01c82b7b1..15536c347e5 100644 --- a/src/mame/layout/m5vertgo.lay +++ b/src/mame/layout/m5vertgo.lay @@ -4123,1974 +4123,1001 @@ <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="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_reel" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_reel" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_reel" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_reel" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_reel" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_reel" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_reel" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_reel" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_reel" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_reel" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_reel" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_reel" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_reel" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_reel" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_reel" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_reel" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_reel" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_reel" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_reel" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_reel" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5wking05.lay b/src/mame/layout/m5wking05.lay index f3bf48e4a0b..a86442d1fc7 100644 --- a/src/mame/layout/m5wking05.lay +++ b/src/mame/layout/m5wking05.lay @@ -1010,1974 +1010,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </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_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5wonga.lay b/src/mame/layout/m5wonga.lay index e3885e05ba9..3bbc3cf66b4 100644 --- a/src/mame/layout/m5wonga.lay +++ b/src/mame/layout/m5wonga.lay @@ -4656,1974 +4656,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_reel" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_reel" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_reel" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_reel" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_reel" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_reel" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_reel" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_reel" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_reel" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_reel" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_reel" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_reel" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_reel" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_reel" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_reel" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_reel" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_reel" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_reel" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_reel" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_reel" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_reel" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_reel" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_button" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="lamp72" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5wthing20.lay b/src/mame/layout/m5wthing20.lay index b66143eb635..aa6bcb50629 100644 --- a/src/mame/layout/m5wthing20.lay +++ b/src/mame/layout/m5wthing20.lay @@ -3566,1974 +3566,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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> diff --git a/src/mame/layout/m5xchn.lay b/src/mame/layout/m5xchn.lay index d92748ed0b1..8fd7daa1b81 100644 --- a/src/mame/layout/m5xchn.lay +++ b/src/mame/layout/m5xchn.lay @@ -1555,1974 +1555,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5xfact11.lay b/src/mame/layout/m5xfact11.lay index 482b34d0c1e..50dcff3169d 100644 --- a/src/mame/layout/m5xfact11.lay +++ b/src/mame/layout/m5xfact11.lay @@ -1059,1974 +1059,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </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_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </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_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </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_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </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="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </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_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </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_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </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_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </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_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </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_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </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_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </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_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </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_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </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_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </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_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </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_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </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_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </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_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </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_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </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_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </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_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </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_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </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_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </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_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </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_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </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_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </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_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </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_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </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_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </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_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </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_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </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_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </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_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </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_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </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_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </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_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </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_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </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_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </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_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </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_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </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_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </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_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </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_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </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_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </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_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </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_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </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_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </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_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </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> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/sc1barcd.lay b/src/mame/layout/sc1barcd.lay index 00d563e0c42..29c2e3ac0d0 100644 --- a/src/mame/layout/sc1barcd.lay +++ b/src/mame/layout/sc1barcd.lay @@ -2112,1974 +2112,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_segment" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_standard" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_standard" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1bartk.lay b/src/mame/layout/sc1bartk.lay index c19190a99f6..acc58cdc4e4 100644 --- a/src/mame/layout/sc1bartk.lay +++ b/src/mame/layout/sc1bartk.lay @@ -608,1974 +608,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_segment" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1cl65.lay b/src/mame/layout/sc1cl65.lay index a4b5ba1e5f7..f1e9f939289 100644 --- a/src/mame/layout/sc1cl65.lay +++ b/src/mame/layout/sc1cl65.lay @@ -2332,1974 +2332,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_reel" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_button" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="lamp23" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1clbtma.lay b/src/mame/layout/sc1clbtma.lay index eff6117d3c1..f7998f2311a 100644 --- a/src/mame/layout/sc1clbtma.lay +++ b/src/mame/layout/sc1clbtma.lay @@ -4054,1974 +4054,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_segment" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_button" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_segment" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_segment" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_segment" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_segment" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_segment" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_segment" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_segment" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_segment" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_segment" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_segment" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_segment" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_segment" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_segment" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_segment" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_segment" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_segment" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="lamp23" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1cwcl.lay b/src/mame/layout/sc1cwcl.lay index f975b7e0220..c1d31a91fde 100644 --- a/src/mame/layout/sc1cwcl.lay +++ b/src/mame/layout/sc1cwcl.lay @@ -1864,1974 +1864,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_button" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_segment" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_segment" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_segment" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_segment" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_segment" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_segment" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_segment" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_segment" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_segment" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_segment" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_segment" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_segment" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_segment" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_segment" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_segment" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_segment" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_segment" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_segment" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_segment" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_segment" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_segment" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_segment" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_segment" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_segment" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="lamp15" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1dblch.lay b/src/mame/layout/sc1dblch.lay index 60b444082fe..1a1c8651bb5 100644 --- a/src/mame/layout/sc1dblch.lay +++ b/src/mame/layout/sc1dblch.lay @@ -3336,1974 +3336,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_segment" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_button" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_standard" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_standard" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="lamp23" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1pwrl.lay b/src/mame/layout/sc1pwrl.lay index af3c6106280..4c26372f2e6 100644 --- a/src/mame/layout/sc1pwrl.lay +++ b/src/mame/layout/sc1pwrl.lay @@ -2353,1974 +2353,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_standard" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_standard" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_segment" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_segment" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_segment" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_segment" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_segment" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_segment" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_segment" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_segment" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_segment" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_segment" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_segment" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_segment" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_segment" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_segment" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_segment" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_segment" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_segment" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_segment" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_segment" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_segment" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_segment" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1sirb.lay b/src/mame/layout/sc1sirb.lay index 98083a2602d..5056389707f 100644 --- a/src/mame/layout/sc1sirb.lay +++ b/src/mame/layout/sc1sirb.lay @@ -2383,1974 +2383,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_standard" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_standard" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_segment" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_segment" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_segment" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_segment" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_segment" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_segment" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_segment" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_segment" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_segment" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_segment" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_segment" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_segment" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_segment" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_segment" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1spct.lay b/src/mame/layout/sc1spct.lay index e94e78cec68..145452979a3 100644 --- a/src/mame/layout/sc1spct.lay +++ b/src/mame/layout/sc1spct.lay @@ -2069,1974 +2069,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_segment" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_standard" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_standard" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_standard" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc1str4.lay b/src/mame/layout/sc1str4.lay index 0cd6e6a9b12..5ff9350bdf0 100644 --- a/src/mame/layout/sc1str4.lay +++ b/src/mame/layout/sc1str4.lay @@ -321,1974 +321,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc2casr2.lay b/src/mame/layout/sc2casr2.lay index d558f34ae59..68aa2a42e76 100644 --- a/src/mame/layout/sc2casr2.lay +++ b/src/mame/layout/sc2casr2.lay @@ -2566,1974 +2566,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_reel" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_reel" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_reel" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc2cpg.lay b/src/mame/layout/sc2cpg.lay index b12db7272e4..70c02e150d2 100644 --- a/src/mame/layout/sc2cpg.lay +++ b/src/mame/layout/sc2cpg.lay @@ -3457,1974 +3457,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_button" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_reel" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_reel" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_reel" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_reel" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_reel" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_reel" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc2eggs1.lay b/src/mame/layout/sc2eggs1.lay index 82f10d0ccdd..a711009c8b9 100644 --- a/src/mame/layout/sc2eggs1.lay +++ b/src/mame/layout/sc2eggs1.lay @@ -3219,1974 +3219,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_button" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_reel" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_reel" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_reel" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_button" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp32" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="lamp87" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc2heypr.lay b/src/mame/layout/sc2heypr.lay index 28589541101..df804050945 100644 --- a/src/mame/layout/sc2heypr.lay +++ b/src/mame/layout/sc2heypr.lay @@ -1689,1974 +1689,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_reel" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_reel" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_reel" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_reel" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc2majes.lay b/src/mame/layout/sc2majes.lay index 08bdcffff17..cce0d7d118b 100644 --- a/src/mame/layout/sc2majes.lay +++ b/src/mame/layout/sc2majes.lay @@ -2096,1974 +2096,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_segment" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_segment" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_segment" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_segment" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_segment" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_segment" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_segment" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_segment" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_segment" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_segment" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_segment" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_segment" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_segment" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_segment" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_segment" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_segment" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_reel" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_reel" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_segment" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_segment" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_segment" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_segment" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_segment" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_segment" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_segment" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_segment" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_segment" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_segment" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_segment" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_segment" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_segment" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_segment" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_segment" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_segment" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_segment" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_segment" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_segment" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_segment" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_segment" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_segment" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_segment" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_segment" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc2suprz1.lay b/src/mame/layout/sc2suprz1.lay index e2ed871822c..5f13339a72a 100644 --- a/src/mame/layout/sc2suprz1.lay +++ b/src/mame/layout/sc2suprz1.lay @@ -1818,1974 +1818,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_segment" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_segment" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_segment" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_segment" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_segment" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_segment" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_segment" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_segment" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_segment" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_segment" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_segment" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_segment" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_segment" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_segment" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_segment" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_segment" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_reel" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_reel" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_reel" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_segment" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_segment" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_segment" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_segment" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_segment" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_segment" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_segment" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_segment" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_segment" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_segment" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_segment" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_segment" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_segment" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_segment" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_segment" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_segment" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="STROBE0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_standard" state="0" inputtag="STROBE1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="STROBE1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_standard" state="0" inputtag="STROBE2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="STROBE2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="STROBE3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="STROBE4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="STROBE5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="STROBE6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="STROBE7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4acesh.lay b/src/mame/layout/sc4acesh.lay index ccccefba25a..75858bf654e 100644 --- a/src/mame/layout/sc4acesh.lay +++ b/src/mame/layout/sc4acesh.lay @@ -2953,6 +2953,7 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> @@ -3737,435 +3738,216 @@ <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4bantm.lay b/src/mame/layout/sc4bantm.lay index 0be6ebacd77..460ed44ccf2 100644 --- a/src/mame/layout/sc4bantm.lay +++ b/src/mame/layout/sc4bantm.lay @@ -4139,6 +4139,7 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> @@ -4923,435 +4924,216 @@ <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4bedcl.lay b/src/mame/layout/sc4bedcl.lay index e92a015b68a..fe42ea0ff02 100644 --- a/src/mame/layout/sc4bedcl.lay +++ b/src/mame/layout/sc4bedcl.lay @@ -5153,1974 +5153,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_button" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_button" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_button" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_button" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_button" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="lamp39" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="lamp16" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4blast.lay b/src/mame/layout/sc4blast.lay index d3f60490f96..86bff2122eb 100644 --- a/src/mame/layout/sc4blast.lay +++ b/src/mame/layout/sc4blast.lay @@ -4295,1974 +4295,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_button" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_button" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_button" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_button" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4blokq.lay b/src/mame/layout/sc4blokq.lay index 61861f3231a..98eb33fde4e 100644 --- a/src/mame/layout/sc4blokq.lay +++ b/src/mame/layout/sc4blokq.lay @@ -6449,1974 +6449,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_segment" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_reel" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_reel" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_reel" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_reel" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_reel" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_reel" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_reel" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_reel" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_reel" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_reel" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_reel" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_button" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_button" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_button" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_button" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_button" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_button" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_standard" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_standard" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_reel" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_reel" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_reel" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4bobcl.lay b/src/mame/layout/sc4bobcl.lay index 6dd4c3b8634..ec367ed0388 100644 --- a/src/mame/layout/sc4bobcl.lay +++ b/src/mame/layout/sc4bobcl.lay @@ -5302,1974 +5302,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_button" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_button" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_button" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_button" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_button" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_button" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="lamp8" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4brksp.lay b/src/mame/layout/sc4brksp.lay index d81c1415513..141ea30fb5a 100644 --- a/src/mame/layout/sc4brksp.lay +++ b/src/mame/layout/sc4brksp.lay @@ -5789,1974 +5789,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_reel" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_button" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_button" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_button" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_button" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_button" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4brollb.lay b/src/mame/layout/sc4brollb.lay index 3ce37391fa4..39c6d08f24a 100644 --- a/src/mame/layout/sc4brollb.lay +++ b/src/mame/layout/sc4brollb.lay @@ -4945,1974 +4945,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_standard" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_standard" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_button" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_reel" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_reel" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_reel" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/layout/sc4cabin.lay b/src/mame/layout/sc4cabin.lay index 8ad7aa793b5..869d2bbd6aa 100644 --- a/src/mame/layout/sc4cabin.lay +++ b/src/mame/layout/sc4cabin.lay @@ -4565,1974 +4565,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_button" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_button" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_button" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_button" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_button" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_button" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_button" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_button" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_standard" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_standard" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_standard" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_standard" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_standard" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_standard" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_button" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_button" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_button" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_button" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_reel" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_button" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_button" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_button" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_button" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </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="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="lamp6" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </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="0" 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> diff --git a/src/mame/video/rpunch.cpp b/src/mame/video/rpunch.cpp deleted file mode 100644 index ba98cfe31f5..00000000000 --- a/src/mame/video/rpunch.cpp +++ /dev/null @@ -1,281 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Aaron Giles -/*************************************************************************** - - video/rpunch.cpp - - Functions to emulate the video hardware of the machine. - -****************************************************************************/ - -#include "emu.h" -#include "includes/rpunch.h" - - -/************************************* - * - * Tilemap callbacks - * - *************************************/ - -TILE_GET_INFO_MEMBER(rpunch_state::get_bg0_tile_info) -{ - const u16 data = m_videoram[tile_index]; - int code; - if (m_videoflags & 0x0400) code = (data & 0x0fff) | 0x2000; - else code = (data & 0x1fff); - - tileinfo.set(0, - code, - ((m_videoflags & 0x0010) >> 1) | ((data >> 13) & 7), - 0); -} - -TILE_GET_INFO_MEMBER(rpunch_state::get_bg1_tile_info) -{ - const u16 data = m_videoram[0x1000 | tile_index]; - int code; - if (m_videoflags & 0x0800) code = (data & 0x0fff) | 0x2000; - else code = (data & 0x1fff); - - tileinfo.set(1, - code, - ((m_videoflags & 0x0020) >> 2) | ((data >> 13) & 7), - 0); -} - - -/************************************* - * - * Video system start - * - *************************************/ - -TIMER_CALLBACK_MEMBER(rpunch_state::crtc_interrupt_gen) -{ - m_maincpu->set_input_line(1, HOLD_LINE); - if (param != 0) - m_crtc_timer->adjust(m_screen->frame_period() / param, 0, m_screen->frame_period() / param); -} - - -VIDEO_START_MEMBER(rpunch_state,rpunch) -{ - m_videoflags = 0; - m_sprite_xoffs = 0; - - /* allocate tilemaps for the backgrounds */ - m_background[0] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(rpunch_state::get_bg0_tile_info)), TILEMAP_SCAN_COLS, 8, 8, 64, 64); - m_background[1] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(rpunch_state::get_bg1_tile_info)), TILEMAP_SCAN_COLS, 8, 8, 64, 64); - - /* configure the tilemaps */ - m_background[1]->set_transparent_pen(15); - - m_pixmap = std::make_unique<bitmap_ind16>(512, 256); - - const rectangle pixmap_rect(0,511,0,255); - m_pixmap->fill(0xf, pixmap_rect); - - /* reset the timer */ - m_crtc_timer = timer_alloc(FUNC(rpunch_state::crtc_interrupt_gen), this); - - save_item(NAME(*m_pixmap)); -} - - -VIDEO_START_MEMBER(rpunch_state,svolley) -{ - VIDEO_START_CALL_MEMBER(rpunch); - m_background[0]->set_scrolldx(8, 0); // aligns middle net sprite with bg as shown in reference - m_sprite_xoffs = -4; -} - - -/************************************* - * - * Write handlers - * - *************************************/ - -u8 rpunch_state::pixmap_r(offs_t offset) -{ - const int sy = offset >> 8; - const int sx = (offset & 0xff) << 1; - - return ((m_pixmap->pix(sy & 0xff, sx & ~1) & 0xf) << 4) | (m_pixmap->pix(sy & 0xff, sx | 1) & 0xf); -} - -void rpunch_state::pixmap_w(offs_t offset, u8 data) -{ - const int sy = offset >> 8; - const int sx = (offset & 0xff) << 1; - - m_pixmap->pix(sy & 0xff, sx & ~1) = ((data & 0xf0) >> 4); - m_pixmap->pix(sy & 0xff, sx | 1) = (data & 0x0f); -} - -void rpunch_state::videoram_w(offs_t offset, u16 data, u16 mem_mask) -{ - const int tmap = offset >> 12; - const int tile_index = offset & 0xfff; - COMBINE_DATA(&m_videoram[offset]); - m_background[tmap]->mark_tile_dirty(tile_index); -} - - -void rpunch_state::videoreg_w(offs_t offset, u16 data, u16 mem_mask) -{ - const int oldword = m_videoflags; - COMBINE_DATA(&m_videoflags); - - if (m_videoflags != oldword) - { - /* invalidate tilemaps */ - if ((oldword ^ m_videoflags) & 0x0410) - m_background[0]->mark_all_dirty(); - if ((oldword ^ m_videoflags) & 0x0820) - m_background[1]->mark_all_dirty(); - } -} - - -void rpunch_state::scrollreg_w(offs_t offset, u16 data, u16 mem_mask) -{ - if (ACCESSING_BITS_0_7 && ACCESSING_BITS_8_15) - switch (offset) - { - case 0: - m_background[0]->set_scrolly(0, data & 0x1ff); - break; - - case 1: - m_background[0]->set_scrollx(0, data & 0x1ff); - break; - - case 2: - m_background[1]->set_scrolly(0, data & 0x1ff); - break; - - case 3: - m_background[1]->set_scrollx(0, data & 0x1ff); - break; - } -} - - -void rpunch_state::gga_w(offs_t offset, u8 data) -{ - m_gga->write(offset >> 5, data & 0xff); -} - - -void rpunch_state::gga_data_w(offs_t offset, u8 data) -{ - switch (offset) - { - /* only register we know about.... */ - case 0x0b: - m_crtc_timer->adjust(m_screen->time_until_vblank_start(), (data == 0xc0) ? 2 : 1); - break; - - default: - logerror("CRTC register %02X = %02X\n", offset, data); - break; - } -} - - -void rpunch_state::sprite_ctrl_w(offs_t offset, u8 data) -{ - if (offset == 0) - { - m_sprite_num = data & 0x3f; - logerror("Number of sprites = %02X\n", data & 0x3f); - } - else - { - m_sprite_pri = data & 0x3f; - logerror("Sprite priority point = %02X\n", data & 0x3f); - } -} - - -/************************************* - * - * Sprite routines - * - *************************************/ - -void rpunch_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect) -{ - /* draw the sprites */ - int offs = m_sprite_num; - while (offs > 0) - { - offs--; - const u32 ram = offs << 2; - u32 pri = 0; // above everything except direct mapped bitmap - /* this seems like the most plausible explanation */ - if (offs < m_sprite_pri) - pri |= GFX_PMASK_2; // behind foreground - - const u16 data1 = m_spriteram[ram + 1]; - const u32 code = data1 & 0x7ff; - - const u16 data0 = m_spriteram[ram + 0]; - const u16 data2 = m_spriteram[ram + 2]; - int x = (data2 & 0x1ff) + 8; - int y = 513 - (data0 & 0x1ff); - const bool xflip = data1 & 0x1000; - const bool yflip = data1 & 0x0800; - const u32 color = ((data1 >> 13) & 7) | ((m_videoflags & 0x0040) >> 3); - - if (x > cliprect.max_x) x -= 512; - if (y > cliprect.max_y) y -= 512; - - m_gfxdecode->gfx(2)->prio_transpen(bitmap,cliprect, - code, color + (m_sprite_palette / 16), xflip, yflip, x + m_sprite_xoffs, y, - m_screen->priority(), pri, 15); - } -} - - -/************************************* - * - * Bitmap routines - * - *************************************/ - -void rpunch_state::draw_bitmap(bitmap_ind16 &bitmap, const rectangle &cliprect) -{ - const u32 colourbase = 512 + ((m_videoflags & 0x000f) << 4); - - for (int y = cliprect.min_y; y <= cliprect.max_y; y++) - { - u16 const *const src = &m_pixmap->pix(y & 0xff); - u16 *const dst = &bitmap.pix(y); - for(int x = cliprect.min_x / 4; x <= cliprect.max_x; x++) - { - const u16 pix = src[(x + 4) & 0x1ff]; - if ((pix & 0xf) != 0xf) - dst[x] = colourbase + pix; - } - } -} - - -/************************************* - * - * Main screen refresh - * - *************************************/ - -u32 rpunch_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) -{ - screen.priority().fill(0, cliprect); - m_background[0]->draw(screen, bitmap, cliprect, 0,1); - m_background[1]->draw(screen, bitmap, cliprect, 0,2); - draw_sprites(bitmap, cliprect); - draw_bitmap(bitmap, cliprect); - return 0; -} |