jpm/jmpsys5cpp: Start working on inputs inputs, and added reel interface. (#10709)

This commit is contained in:
James Wallace 2022-12-21 19:32:14 +00:00 committed by GitHub
parent 3178442049
commit 0619912fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
619 changed files with 12180 additions and 11905 deletions

View File

@ -189,7 +189,7 @@ void stepper_device::advance_phase()
{
//Standard drive table is 2,6,4,5,1,9,8,a
//NOTE: This runs through the stator patterns in such a way as to drive the reel forward (downwards from the player's view, clockwise on our rose)
//The Heber 'Pluto' controller runs this in reverse
//The Heber 'Pluto' controller runs this in reverse, this needs checking on real hardware
switch (m_pattern)
{ //Black Blue Red Yellow
case 0x02:// 0 0 1 0
@ -257,7 +257,8 @@ void reel_device::advance_phase()
case STARPOINT_48STEP_REEL : /* STARPOINT RMxxx */
case GAMESMAN_200STEP_REEL : /* Gamesman GMxxxx */
case STARPOINT_144STEP_DICE :/* STARPOINT 1DCU DICE mechanism */
case STARPOINT_200STEP_REEL :/* STARPOINT 1DCU DICE mechanism */
case STARPOINT_200STEP_REEL :
case SYS5_100STEP_REEL :
stepper_device::advance_phase();
break;

View File

@ -35,6 +35,8 @@
#define SRU_200STEP_REEL 11
#define SYS5_100STEP_REEL 12
class stepper_device : public device_t
{

View File

@ -18,7 +18,7 @@
Known Issues:
* Some features used by the AWP games such as reels are not emulated.
* Timing for reels, and other opto devices is controlled by a generated clock
in a weird daisychain setup.
in a weird daisychain setup. We're using the later direct drive approach for now
AWP game notes:
The byte at 0x81 of the EVEN 68k rom appears to be some kind of
@ -245,31 +245,32 @@ void jpmsys5_state::reel_0123_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
logerror("%s: reel_0123_w %04x %04x\n", machine().describe_context(), data, mem_mask);
// only writes 0/1/2/3 to each reel?
if (data & 0xcccc)
popmessage("reel_0123_w upper bits set", data & 0xcccc);
if (m_reel[0])
{
m_reel[0]->update((data >> 0) & 0x03);
m_reel[0]->update(reel_interface_table[(data >> 0) & 0x03]);
awp_draw_reel(machine(), "reel1", *m_reel[0]);
}
if (m_reel[1])
{
m_reel[1]->update((data >> 4) & 0x03);
m_reel[1]->update(reel_interface_table[(data >> 4) & 0x03]);
awp_draw_reel(machine(), "reel2", *m_reel[1]);
}
if (m_reel[2])
{
m_reel[2]->update((data >> 8) & 0x03);
m_reel[2]->update(reel_interface_table[(data >> 8) & 0x03]);
awp_draw_reel(machine(), "reel3", *m_reel[2]);
}
if (m_reel[3])
{
m_reel[3]->update((data >> 12) & 0x03);
m_reel[3]->update(reel_interface_table[(data >> 12) & 0x03]);
awp_draw_reel(machine(), "reel4", *m_reel[3]);
}
}
@ -283,23 +284,23 @@ void jpmsys5_state::reel_4567_w(offs_t offset, uint16_t data, uint16_t mem_mask)
if (m_reel[4])
{
m_reel[4]->update((data >> 0) & 0x03);
m_reel[4]->update(reel_interface_table[(data >> 0) & 0x03]);
awp_draw_reel(machine(), "reel5", *m_reel[4]);
}
if (m_reel[5])
{
m_reel[5]->update((data >> 4) & 0x03);
m_reel[5]->update(reel_interface_table[(data >> 4) & 0x03]);
awp_draw_reel(machine(), "reel6", *m_reel[5]);
}
#if 0
if (m_reel[6])
{
m_reel[6]->update(data >> 8) & 0x03);
m_reel[6]->update(reel_interface_table[(data >> 8) & 0x03]);
awp_draw_reel(machine(), "reel6", *m_reel[6]);
}
if (m_reel[7])
{
m_reel[7]->update((data >> 12) & 0x03);
m_reel[7]->update(reel_interface_table[(data >> 12) & 0x03]);
awp_draw_reel(machine(), "reel7", *m_reel[7]);
}
#endif
@ -850,20 +851,17 @@ void jpmsys5v_state::jpmsys5v(machine_config &config)
void jpmsys5_state::reels(machine_config &config)
{
// probably incorrect reel types, but they do seem to only require 2 bits to write?
// forcing 200 steps keeps j5fair main reels aligned, so probably needs a type
// with the same write patterns as MPU3_48STEP_REEL, but with 200 steps defining?
REEL(config, m_reel[0], MPU3_48STEP_REEL, 1, 3, 0x00, 2, 200);
REEL(config, m_reel[0], SYS5_100STEP_REEL, 1, 3, 0x00, 2, 200);
m_reel[0]->optic_handler().set(FUNC(jpmsys5_state::reel_optic_cb<0>));
REEL(config, m_reel[1], MPU3_48STEP_REEL, 1, 3, 0x00, 2, 200);
REEL(config, m_reel[1], SYS5_100STEP_REEL, 1, 3, 0x00, 2, 200);
m_reel[1]->optic_handler().set(FUNC(jpmsys5_state::reel_optic_cb<1>));
REEL(config, m_reel[2], MPU3_48STEP_REEL, 1, 3, 0x00, 2, 200);
REEL(config, m_reel[2], SYS5_100STEP_REEL, 1, 3, 0x00, 2, 200);
m_reel[2]->optic_handler().set(FUNC(jpmsys5_state::reel_optic_cb<2>));
REEL(config, m_reel[3], MPU3_48STEP_REEL, 1, 3, 0x00, 2, 200);
REEL(config, m_reel[3], SYS5_100STEP_REEL, 1, 3, 0x00, 2, 200);
m_reel[3]->optic_handler().set(FUNC(jpmsys5_state::reel_optic_cb<3>));
REEL(config, m_reel[4], MPU3_48STEP_REEL, 1, 3, 0x00, 2, 200);
REEL(config, m_reel[4], SYS5_100STEP_REEL, 1, 3, 0x00, 2, 200);
m_reel[4]->optic_handler().set(FUNC(jpmsys5_state::reel_optic_cb<4>));
REEL(config, m_reel[5], MPU3_48STEP_REEL, 1, 3, 0x00, 2, 200);
REEL(config, m_reel[5], SYS5_100STEP_REEL, 1, 3, 0x00, 2, 200);
m_reel[5]->optic_handler().set(FUNC(jpmsys5_state::reel_optic_cb<5>));
}
@ -953,7 +951,7 @@ INPUT_PORTS_START( popeye )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_SERVICE ) PORT_NAME("Back door") PORT_CODE(KEYCODE_R) PORT_TOGGLE
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_SERVICE ) PORT_NAME("Cash door") PORT_CODE(KEYCODE_T) PORT_TOGGLE
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_SERVICE ) PORT_NAME("Refill key") PORT_CODE(KEYCODE_Y) PORT_TOGGLE
PORT_DIPNAME( 0x08, 0x00, "Direct 0x08" ) // These are the % key, at least for popeye?
PORT_DIPNAME( 0x08, 0x00, "Direct 0x08" ) // These are the % key, at least for popeye? But there's a pin missing if so, usually these have 4 bits
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x10, "Direct 0x10" )
@ -968,29 +966,73 @@ INPUT_PORTS_START( popeye )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_CUSTOM )
PORT_START("COINS")
PORT_BIT( 0x03, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_NAME("10p")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_NAME("20p")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_COIN3 ) PORT_NAME("50p")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_COIN4 ) PORT_NAME("100p")
PORT_BIT( 0xc3, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_COIN5 ) PORT_NAME("Token")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_START("STROBE0")
PORT_BIT(0xFF, IP_ACTIVE_LOW, IPT_UNKNOWN)
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("00")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("01")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("02")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("03")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("04")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON6 ) PORT_NAME("05")
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON7 ) PORT_NAME("06")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON8 ) PORT_NAME("07")
PORT_START("STROBE1")
PORT_BIT(0xFF, IP_ACTIVE_LOW, IPT_UNKNOWN)
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("08")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("09")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("10")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("11")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("12")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("13")
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("14")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("15")
PORT_START("STROBE2")
PORT_BIT(0xFF, IP_ACTIVE_LOW, IPT_UNKNOWN)
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_START1 ) PORT_NAME("Start")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON6 ) PORT_NAME("Exchange")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("Collect")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("Hold 3/Lo")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("Hold 2/Hi")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("Hold 1")
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON1) PORT_NAME("Cancel")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("23")
PORT_START("STROBE3")
PORT_BIT(0xFF, IP_ACTIVE_LOW, IPT_UNKNOWN)
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("24")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("25")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("26")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("27")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("28")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("29")
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("30")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("31")
PORT_START("STROBE4")
PORT_BIT(0xFF, IP_ACTIVE_LOW, IPT_UNKNOWN)
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("32")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("33")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("34")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("35")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("36")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("37")
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("38")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("39")
PORT_START("STROBE5")
PORT_BIT(0xFF, IP_ACTIVE_LOW, IPT_UNKNOWN)
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("40")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("41")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("42")
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("43")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("44")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("45")
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("46")
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("47")
PORT_START("UNKNOWN_PORT")
PORT_DIPNAME( 0x0001, 0x0000, "Unknown 0x0001" ) // if this and 0x0008 are on then j5popeye boots, what is it? something opto related?

View File

@ -113,6 +113,8 @@ private:
uint16_t unk_r(offs_t offset, uint16_t mem_mask = ~0);
static inline constexpr uint8_t reel_interface_table[4] = {0x0a, 0x09, 0x06, 0x05};//An interface maps the 2-bit values to meaningful Starpoint patterns (Proconn do this too, put in steppers?)
uint16_t reellamps_0123_r(offs_t offset, uint16_t mem_mask = ~0);
void reellamps_0123_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
uint16_t reellamps_4567_r(offs_t offset, uint16_t mem_mask = ~0);

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -46,7 +46,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -826,7 +826,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</disk>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.40"/>
</text>
@ -946,7 +946,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</disk>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.40"/>
</text>
@ -1158,7 +1158,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1178,7 +1178,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1198,7 +1198,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1218,7 +1218,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1238,7 +1238,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1258,7 +1258,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1518,7 +1518,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1538,7 +1538,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1558,7 +1558,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1578,7 +1578,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1598,7 +1598,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1618,7 +1618,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1638,7 +1638,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1658,7 +1658,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1758,7 +1758,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2075,15 +2075,15 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.18"/>
</text>
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.23" width="0.90" height="0.18"/>
</text>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.41" width="0.90" height="0.18"/>
</text>
<text string="&#xA3;20??">
<text string="£20??">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.59" width="0.90" height="0.18"/>
</text>
@ -2099,15 +2099,15 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
@ -2117,35 +2117,35 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;20.00">
<text string="£20.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.14" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;20.00">
<text string="£20.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.23" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;10.00">
<text string="£10.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.32" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;10.00">
<text string="£10.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.41" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;5.00">
<text string="£5.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.59" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.68" width="0.90" height="0.09"/>
</text>
<text string="&#xA3;1.20??">
<text string="£1.20??">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.77" width="0.90" height="0.09"/>
</text>
@ -2155,27 +2155,27 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;10.00">
<text string="£10.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.16" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;5.00">
<text string="£5.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.28" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;5.00">
<text string="£5.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.39" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.61" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.72" width="0.90" height="0.11"/>
</text>
@ -2185,7 +2185,7 @@
</text>
</element>
<element name="label_130">
<text string="Any 3 = &#xA3;1.20">
<text string="Any 3 = £1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
@ -2199,13 +2199,13 @@
</text>
</element>
<element name="label_131">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_132">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -146,7 +146,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -186,7 +186,7 @@
<rect state="0">
<color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -206,7 +206,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1086,7 +1086,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -50,7 +50,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -230,7 +230,7 @@
<rect state="0">
<color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -502,7 +502,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="COLLECT ARROW POT OR PRESS START TO WAIT FOR &#xA3;4">
<text string="COLLECT ARROW POT OR PRESS START TO WAIT FOR £4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -742,7 +742,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="COLLECT ARROW POT OR PRESS START TO WAIT FOR &#xA3;4">
<text string="COLLECT ARROW POT OR PRESS START TO WAIT FOR £4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1054,7 +1054,7 @@
<rect state="0">
<color red="0.04" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1074,7 +1074,7 @@
<rect state="0">
<color red="0.02" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1094,7 +1094,7 @@
<rect state="0">
<color red="0.02" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1114,7 +1114,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1154,7 +1154,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="PLUS &#xA3;2">
<text string="PLUS £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1242,7 +1242,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1462,31 +1462,31 @@
</text>
</element>
<element name="label_150">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_151">
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_152">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_153">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_154">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -426,7 +426,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -446,7 +446,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -466,7 +466,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;8">
<text string="£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -486,7 +486,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;6">
<text string="£6">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -506,7 +506,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -526,7 +526,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -578,7 +578,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
<text string="THE WIN TO &#xA3;4">
<text string="THE WIN TO £4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.72" width="0.90" height="0.22"/>
</text>
@ -602,7 +602,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2 CHANC">
<text string="£2 CHANC">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -782,7 +782,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -802,7 +802,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -822,7 +822,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -842,7 +842,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -862,7 +862,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -942,7 +942,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="BIG &#xA3;2">
<text string="BIG £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1522,7 +1522,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2156,23 +2156,23 @@
</text>
</element>
<element name="label_116">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.16" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.28" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.39" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.11"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -46,7 +46,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -110,7 +110,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -130,7 +130,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -150,7 +150,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -170,7 +170,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -190,7 +190,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -210,7 +210,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -230,7 +230,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -470,7 +470,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -490,7 +490,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -510,7 +510,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -530,7 +530,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -550,7 +550,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;6">
<text string="£6">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -570,7 +570,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;8">
<text string="£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -590,7 +590,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -610,7 +610,7 @@
<rect state="0">
<color red="0.22" green="0.00" blue="0.00"/>
</rect>
<text string="BONUS &#xA3;2">
<text string="BONUS £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1918,23 +1918,23 @@
</text>
</element>
<element name="label_43">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.16" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.28" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.39" width="0.90" height="0.11"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.11"/>
</text>
@ -1968,7 +1968,7 @@
</text>
</element>
<element name="label_67">
<text string="&#xA3; STRETCHER">
<text string="£ STRETCHER">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1984,7 +1984,7 @@
</text>
</element>
<element name="label_94">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -94,7 +94,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -174,7 +174,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -214,7 +214,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="+ &#xA3;2">
<text string="+ £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -238,7 +238,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -258,7 +258,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -278,7 +278,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -298,7 +298,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -490,7 +490,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -514,7 +514,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1102,7 +1102,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1122,7 +1122,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1142,7 +1142,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1162,7 +1162,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1182,7 +1182,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1202,7 +1202,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1222,7 +1222,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1242,7 +1242,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1558,7 +1558,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4 + &#xA3;2 Climber">
<text string="£4 + £2 Climber">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1602,7 +1602,7 @@
<rect state="0">
<color red="0.03" green="0.14" blue="0.05"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1622,7 +1622,7 @@
<rect state="0">
<color red="0.03" green="0.14" blue="0.05"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1642,7 +1642,7 @@
<rect state="0">
<color red="0.03" green="0.14" blue="0.05"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1702,11 +1702,11 @@
<rect state="0">
<color red="0.03" green="0.14" blue="0.05"/>
</rect>
<text string="&#xA3;2 +">
<text string="£2 +">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2 Clbr">
<text string="£2 Clbr">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -1726,7 +1726,7 @@
<rect state="0">
<color red="0.03" green="0.14" blue="0.05"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1866,7 +1866,7 @@
<rect state="0">
<color red="0.03" green="0.14" blue="0.05"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2098,7 +2098,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2244,23 +2244,23 @@
</led7seg>
</element>
<element name="label_70">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.10"/>
</text>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.15" width="0.90" height="0.10"/>
</text>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.25" width="0.90" height="0.10"/>
</text>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.35" width="0.90" height="0.10"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.45" width="0.90" height="0.10"/>
</text>

View File

@ -217,44 +217,44 @@ license:CC0
</element>
<element name="100p" defstate="0">
<text string="100p" state="0">
<text string="£ 1" state="0">
<color red="1.0" green="1.0" blue="1.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
<text string="100p" state="1">
<text string="£ 1" state="1">
<color red="1.0" green="1.0" blue="0.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
</element>
<element name="200p" defstate="0">
<text string="200p" state="0">
<text string="£ 2" state="0">
<color red="1.0" green="1.0" blue="1.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
<text string="200p" state="1">
<text string="£ 2" state="1">
<color red="1.0" green="1.0" blue="0.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
</element>
<element name="500p" defstate="0">
<text string="500p" state="0">
<text string="£ 5" state="0">
<color red="1.0" green="1.0" blue="1.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
<text string="500p" state="1">
<text string="£ 5" state="1">
<color red="1.0" green="1.0" blue="0.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
</element>
<element name="1000p" defstate="0">
<text string="1000p" state="0">
<text string="£ 10" state="0">
<color red="1.0" green="1.0" blue="1.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
<text string="1000p" state="1">
<text string="£ 10" state="1">
<color red="1.0" green="1.0" blue="0.0" />
<bounds x="0" y="0.1" width="1" height="0.8" />
</text>
@ -801,7 +801,8 @@ license:CC0
<param name="i" start="15" increment="-1"/>
<param name="x" start="0" increment="9"/>
<element name="vfdblank~i~" ref="vfd0">
<color red="0.14" green="0.14" blue="0.14"/>
<color state="31" red="0.00" green="0.6" blue="1.00" alpha="0.0"/>
<color state="0" red="0.00" green="0.6" blue="1.00" alpha="1.0"/>
<bounds x="~x~" y="120" width="9" height="14"/>
</element>
<element name="vfd~i~" ref="vfd0">

View File

@ -466,6 +466,12 @@ license:CC0
<repeat count="16">
<param name="n" start="15" increment="-1"/>
<param name="x" start="17" increment="7"/>
<element name="vfdblank~n~" ref="vfd0" state="0">
<animate name="vfdduty0" />
<color state="31" red="0.00" green="0.6" blue="1.00" alpha="0.0"/>
<color state="0" red="0.00" green="0.6" blue="1.00" alpha="1.0"/>
<bounds x="~x~" y="0" width="7" height="24"/>
</element>
<element name="vfd~n~" ref="vfd0" state="0">
<animate name="vfdduty0" />
<color state="0" red="0.00" green="0.6" blue="1.00" alpha="0.0"/>

View File

@ -166,7 +166,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -206,7 +206,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -246,7 +246,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -286,7 +286,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -326,7 +326,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -366,7 +366,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -406,7 +406,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -446,7 +446,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -726,7 +726,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -766,7 +766,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -786,7 +786,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1958,7 +1958,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1998,7 +1998,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2018,7 +2018,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2038,7 +2038,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2198,7 +2198,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2482,7 +2482,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_6">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2500,7 +2500,7 @@
</text>
</element>
<element name="label_15">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2518,19 +2518,19 @@
</text>
</element>
<element name="label_18">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_19">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_20">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -86,7 +86,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -430,7 +430,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -570,7 +570,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.06" green="0.00" blue="0.00"/>
</rect>
<text string="NO &#xA3;1 COINS ACCEPTED">
<text string="NO £1 COINS ACCEPTED">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -578,7 +578,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -598,7 +598,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -618,7 +618,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -638,7 +638,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -658,7 +658,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -678,7 +678,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -698,7 +698,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -718,7 +718,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -950,7 +950,7 @@
<rect state="0">
<color red="0.02" green="0.25" blue="0.02"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -970,7 +970,7 @@
<rect state="0">
<color red="0.04" green="0.25" blue="0.04"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -990,7 +990,7 @@
<rect state="0">
<color red="0.06" green="0.25" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1090,7 +1090,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1574,7 +1574,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1754,7 +1754,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1849,31 +1849,31 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_96">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_136">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_137">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_138">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_139">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -230,7 +230,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -250,7 +250,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -270,7 +270,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -330,7 +330,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -390,7 +390,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -410,7 +410,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1290,7 +1290,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1310,7 +1310,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1330,7 +1330,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1350,7 +1350,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1370,7 +1370,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1638,7 +1638,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1658,7 +1658,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1678,7 +1678,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1698,7 +1698,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2110,7 +2110,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2319,7 +2319,7 @@
</text>
</element>
<element name="label_116">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2355,13 +2355,13 @@
</text>
</element>
<element name="label_133">
<text string="&#xA3;2.00 (+BB CLIMB CHANCE)">
<text string="£2.00 (+BB CLIMB CHANCE)">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_137">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -2371,7 +2371,7 @@
</text>
</element>
<element name="label_141">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>

View File

@ -266,7 +266,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -326,7 +326,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -346,7 +346,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -146,7 +146,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -186,7 +186,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1306,7 +1306,7 @@
<disk state="0">
<color red="0.15" green="0.24" blue="0.17"/>
</disk>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>

View File

@ -190,7 +190,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -374,7 +374,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -394,7 +394,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -414,7 +414,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -434,7 +434,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -454,7 +454,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -474,7 +474,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -494,7 +494,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -514,7 +514,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -534,7 +534,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -554,7 +554,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1094,7 +1094,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1114,7 +1114,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1134,7 +1134,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1154,7 +1154,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1174,7 +1174,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1194,7 +1194,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1214,7 +1214,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1234,7 +1234,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1254,7 +1254,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1274,7 +1274,7 @@
<rect state="0">
<color red="0.22" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1294,7 +1294,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1314,7 +1314,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1334,7 +1334,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1354,7 +1354,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1374,7 +1374,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1394,7 +1394,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1414,7 +1414,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1434,7 +1434,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1454,7 +1454,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1474,7 +1474,7 @@
<disk state="0">
<color red="0.22" green="0.19" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1514,7 +1514,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1 POT">
<text string="£1 POT">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1922,7 +1922,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2028,85 +2028,85 @@
</text>
</element>
<element name="label_52">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_58">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="40p,80p,&#xA3;2,&#xA3;50">
<text string="40p,80p,£2,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_71">
<text string="&#xA3;1.20,&#xA3;3.20">
<text string="£1.20,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_72">
<text string="&#xA3;1.20,&#xA3;3.20">
<text string="£1.20,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_73">
<text string="&#xA3;1.60,&#xA3;4.80">
<text string="£1.60,£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_74">
<text string="&#xA3;1.60,&#xA3;4.80">
<text string="£1.60,£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_75">
<text string="&#xA3;2,&#xA3;8">
<text string="£2,£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_76">
<text string="&#xA3;2,&#xA3;8">
<text string="£2,£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_77">
<text string="&#xA3;4,&#xA3;16">
<text string="£4,£16">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_78">
<text string="&#xA3;12,&#xA3;50">
<text string="£12,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_79">
<text string="&#xA3;12,&#xA3;75">
<text string="£12,£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_80">
<text string="&#xA3;20,&#xA3;100">
<text string="£20,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_81">
<text string="&#xA3;20,&#xA3;150">
<text string="£20,£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -518,7 +518,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -638,7 +638,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -658,7 +658,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -678,7 +678,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1318,7 +1318,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1378,7 +1378,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1398,7 +1398,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1538,7 +1538,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1558,7 +1558,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -2003,13 +2003,13 @@
</text>
</element>
<element name="label_122">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_123">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2033,7 +2033,7 @@
</text>
</element>
<element name="label_127">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2045,7 +2045,7 @@
</text>
</element>
<element name="label_129">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -810,7 +810,7 @@
<disk state="0">
<color red="0.21" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -830,7 +830,7 @@
<disk state="0">
<color red="0.21" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -850,7 +850,7 @@
<disk state="0">
<color red="0.21" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -870,7 +870,7 @@
<disk state="0">
<color red="0.21" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -890,7 +890,7 @@
<disk state="0">
<color red="0.21" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1010,7 +1010,7 @@
<disk state="0">
<color red="0.21" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1050,7 +1050,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1070,7 +1070,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1090,7 +1090,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1110,7 +1110,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1658,7 +1658,7 @@
<rect state="0">
<color red="0.10" green="0.25" blue="0.10"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1678,7 +1678,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1766,7 +1766,7 @@
<rect state="0">
<color red="0.07" green="0.25" blue="0.07"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1826,7 +1826,7 @@
<rect state="0">
<color red="0.04" green="0.25" blue="0.04"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2307,7 +2307,7 @@
</text>
</element>
<element name="label_153">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -2323,7 +2323,7 @@
</text>
</element>
<element name="label_161">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -598,7 +598,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -638,7 +638,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -658,7 +658,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1567,19 +1567,19 @@
</text>
</element>
<element name="label_59">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_62">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_66">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1597,7 +1597,7 @@
</text>
</element>
<element name="label_78">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1338,7 +1338,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1482,7 +1482,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1948,7 +1948,7 @@
</text>
</element>
<element name="label_122">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1972,7 +1972,7 @@
</text>
</element>
<element name="label_129">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -382,7 +382,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -402,7 +402,7 @@
<rect state="0">
<color red="0.01" green="0.25" blue="0.01"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1507,13 +1507,13 @@
</text>
</element>
<element name="label_76">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_77">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1607,13 +1607,13 @@
</text>
</element>
<element name="label_104">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_105">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1406,7 +1406,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1446,7 +1446,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2013,13 +2013,13 @@
</text>
</element>
<element name="label_95">
<text string="Bars &#xA3;1">
<text string="Bars £1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_96">
<text string="Sevens &#xA3;2">
<text string="Sevens £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>

View File

@ -258,7 +258,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2.40 +">
<text string="£2.40 +">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -278,7 +278,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -298,7 +298,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -318,7 +318,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -338,7 +338,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -378,7 +378,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -398,7 +398,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -778,7 +778,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -893,7 +893,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_3">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -130,7 +130,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -250,7 +250,7 @@
<rect state="0">
<color red="0.09" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -505,25 +505,25 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_195">
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_196">
<text string="&#xA3;2.20">
<text string="£2.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_197">
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_198">
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -298,7 +298,7 @@
<disk state="0">
<color red="0.04" green="0.25" blue="0.04"/>
</disk>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -342,7 +342,7 @@
<disk state="0">
<color red="0.04" green="0.25" blue="0.04"/>
</disk>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -402,7 +402,7 @@
<disk state="0">
<color red="0.04" green="0.25" blue="0.04"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -746,7 +746,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -766,7 +766,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -786,7 +786,7 @@
<rect state="0">
<color red="0.00" green="0.23" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -990,7 +990,7 @@
<rect state="0">
<color red="0.11" green="0.25" blue="0.11"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1254,7 +1254,7 @@
<rect state="0">
<color red="0.00" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1354,7 +1354,7 @@
<rect state="0">
<color red="0.00" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1914,7 +1914,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2043,7 +2043,7 @@
</text>
</element>
<element name="label_106">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -674,7 +674,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -694,7 +694,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -714,7 +714,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1858,7 +1858,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>

View File

@ -126,7 +126,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.60p">
<text string="£1.60p">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -310,7 +310,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2 Jackpot">
<text string="£2 Jackpot">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2066,7 +2066,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>

View File

@ -826,7 +826,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -846,7 +846,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -894,7 +894,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -914,7 +914,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -934,7 +934,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -954,7 +954,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -974,7 +974,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -994,7 +994,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1074,7 +1074,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1094,7 +1094,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1114,7 +1114,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1134,7 +1134,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1154,7 +1154,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1294,7 +1294,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>

View File

@ -438,7 +438,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -458,7 +458,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -478,7 +478,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -498,7 +498,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -930,7 +930,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1308,13 +1308,13 @@
</text>
</element>
<element name="label_55">
<text string="BANK &#xA3;">
<text string="BANK £">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_60">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1330,7 +1330,7 @@
</text>
</element>
<element name="label_67">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1360,19 +1360,19 @@
</text>
</element>
<element name="label_72">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_73">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_74">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -66,7 +66,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -406,7 +406,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -759,19 +759,19 @@
</text>
</element>
<element name="label_14">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_15">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_16">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -110,7 +110,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</disk>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -410,7 +410,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -767,19 +767,19 @@
</text>
</element>
<element name="label_30">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_31">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_32">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -809,7 +809,7 @@
</text>
</element>
<element name="label_37">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.10" green="0.17" blue="0.25"/>
</rect>
<text string="&#xA3;6">
<text string="£6">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -46,7 +46,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.10" green="0.17" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;8">
<text string="£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -126,7 +126,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;75">
<text string="£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.10" green="0.17" blue="0.25"/>
</rect>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;25">
<text string="£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -186,7 +186,7 @@
<rect state="0">
<color red="0.10" green="0.17" blue="0.25"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1406,7 +1406,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1674,85 +1674,85 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_24">
<text string="&#xA3;12.50,&#xA3;100">
<text string="£12.50,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_25">
<text string="&#xA3;6.40,&#xA3;75">
<text string="£6.40,£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_26">
<text string="&#xA3;6.40,&#xA3;50">
<text string="£6.40,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_27">
<text string="&#xA3;3.20,&#xA3;25">
<text string="£3.20,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_28">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_29">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_30">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_31">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_32">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_33">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_34">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_35">
<text string="20p,40p,&#xA3;1.60,&#xA3;25">
<text string="20p,40p,£1.60,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_38">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_39">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -854,7 +854,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -874,7 +874,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -994,7 +994,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1938,7 +1938,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1958,7 +1958,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1998,7 +1998,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2038,7 +2038,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2098,7 +2098,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2118,7 +2118,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2178,7 +2178,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2218,7 +2218,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2406,7 +2406,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2539,13 +2539,13 @@
</text>
</element>
<element name="label_118">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_119">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2575,7 +2575,7 @@
</text>
</element>
<element name="label_124">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2587,7 +2587,7 @@
</text>
</element>
<element name="label_126">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2605,7 +2605,7 @@
</text>
</element>
<element name="label_129">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -86,7 +86,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1866,7 +1866,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2050,7 +2050,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2151,7 +2151,7 @@
</text>
</element>
<element name="label_52">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -182,7 +182,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -202,7 +202,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -222,7 +222,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -262,7 +262,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -322,7 +322,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -482,7 +482,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -542,7 +542,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -562,7 +562,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -582,7 +582,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1046,7 +1046,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.21" green="0.20" blue="0.17"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -870,7 +870,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.09"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -910,7 +910,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.09"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -930,7 +930,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.09"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -950,7 +950,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.09"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -970,7 +970,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.09"/>
</rect>
<text string="&#xA3;1.80">
<text string="£1.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -990,7 +990,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.01"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1010,7 +1010,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.07"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1030,7 +1030,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.07"/>
</rect>
<text string="&#xA3;2.20">
<text string="£2.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1050,7 +1050,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.07"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1070,7 +1070,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.07"/>
</rect>
<text string="&#xA3;2.60">
<text string="£2.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1090,7 +1090,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.07"/>
</rect>
<text string="&#xA3;2.80">
<text string="£2.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1110,7 +1110,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.07"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1150,7 +1150,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.05"/>
</rect>
<text string="&#xA3;3.50">
<text string="£3.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1170,7 +1170,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.05"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1190,7 +1190,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.05"/>
</rect>
<text string="&#xA3;4.50">
<text string="£4.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1210,7 +1210,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.05"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1230,7 +1230,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.05"/>
</rect>
<text string="&#xA3;6">
<text string="£6">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1250,7 +1250,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.03"/>
</rect>
<text string="&#xA3;8">
<text string="£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1270,7 +1270,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.03"/>
</rect>
<text string="&#xA3;7">
<text string="£7">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1654,7 +1654,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1282,7 +1282,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1541,7 +1541,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_66">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1559,7 +1559,7 @@
</text>
</element>
<element name="label_81">
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -778,7 +778,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -838,11 +838,11 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.25"/>
</rect>
<text string="Each Line = &#xA3;2">
<text string="Each Line = £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="4 Corners = &#xA3;2">
<text string="4 Corners = £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
@ -886,15 +886,15 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="1 Square = &#xA3;2">
<text string="1 Square = £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.22"/>
</text>
<text string="2 Squares = &#xA3;4">
<text string="2 Squares = £4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.28" width="0.90" height="0.22"/>
</text>
<text string=" 3 Squares = &#xA3;10">
<text string=" 3 Squares = £10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.22"/>
</text>
@ -1474,7 +1474,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1580,85 +1580,85 @@
</text>
</element>
<element name="label_63">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_76">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_104">
<text string="&#xA3;25,&#xA3;150">
<text string="£25,£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_105">
<text string="&#xA3;12.80,&#xA3;100">
<text string="£12.80,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_106">
<text string="&#xA3;12.80,&#xA3;75">
<text string="£12.80,£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_107">
<text string="&#xA3;6.40,&#xA3;50">
<text string="£6.40,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_108">
<text string="&#xA3;3.20,&#xA3;12.80">
<text string="£3.20,£12.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_109">
<text string="&#xA3;3.20,&#xA3;12.80">
<text string="£3.20,£12.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_110">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_111">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_112">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_113">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_114">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_115">
<text string="40p,80p,&#xA3;3.20,&#xA3;50">
<text string="40p,80p,£3.20,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -146,7 +146,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="THREE LINES &#xA3;2.40P">
<text string="THREE LINES £2.40P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -170,7 +170,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -194,7 +194,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string=" &#xA3;1.20P">
<text string=" £1.20P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -234,7 +234,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="DOUBLE LINE &#xA3;1.20P">
<text string="DOUBLE LINE £1.20P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -254,7 +254,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="DOUBLE LINE &#xA3;1.80P">
<text string="DOUBLE LINE £1.80P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -414,7 +414,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -434,7 +434,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="THREE LINES &#xA3;1.80">
<text string="THREE LINES £1.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -454,7 +454,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="THREE LINES &#xA3;1.20">
<text string="THREE LINES £1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -502,7 +502,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -566,7 +566,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="FOUR LINES &#xA3;1.40P">
<text string="FOUR LINES £1.40P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -586,7 +586,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="FOUR LINES &#xA3;2.40p">
<text string="FOUR LINES £2.40p">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -606,7 +606,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="FOUR LINES &#xA3;1.40P">
<text string="FOUR LINES £1.40P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -630,7 +630,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -654,7 +654,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -678,7 +678,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -702,7 +702,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;4.80P">
<text string="£4.80P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -726,7 +726,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.20P">
<text string="£1.20P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -750,7 +750,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;1.80P">
<text string="£1.80P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -774,7 +774,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2.40P">
<text string="£2.40P">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -1178,7 +1178,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -525,13 +525,13 @@
</text>
</element>
<element name="label_185">
<text string="&#xA3;2.">
<text string="£2.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_210">
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -549,13 +549,13 @@
</text>
</element>
<element name="label_225">
<text string="&#xA3;1.">
<text string="£1.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_226">
<text string="&#xA3;1.">
<text string="£1.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -46,7 +46,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -130,7 +130,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -634,7 +634,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.20">
<text string="£2.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -126,7 +126,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -186,7 +186,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.40">
<text string="£4.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -206,7 +206,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -226,7 +226,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -246,7 +246,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -350,7 +350,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -370,7 +370,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -430,7 +430,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -658,7 +658,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -678,7 +678,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -698,7 +698,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -718,7 +718,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -738,7 +738,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -758,7 +758,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -778,7 +778,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -798,7 +798,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -818,7 +818,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -978,7 +978,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.13"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1022,7 +1022,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.80">
<text string="£2.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1042,7 +1042,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1062,7 +1062,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1082,7 +1082,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1102,7 +1102,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1122,7 +1122,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1142,7 +1142,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1162,7 +1162,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1182,7 +1182,7 @@
<rect state="0">
<color red="0.20" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1202,7 +1202,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;150 JACKPOT">
<text string="£150 JACKPOT">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1634,7 +1634,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -482,7 +482,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -502,7 +502,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -522,7 +522,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -542,7 +542,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -582,7 +582,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.01"/>
</rect>
<text string="NO &#xA3;1 COINS ACCEPTED">
<text string="NO £1 COINS ACCEPTED">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1466,7 +1466,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1486,7 +1486,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1586,7 +1586,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1606,7 +1606,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;1 Special">
<text string="£1 Special">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1770,7 +1770,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1790,7 +1790,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1810,7 +1810,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1830,7 +1830,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1962,7 +1962,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2128,7 +2128,7 @@
</text>
</element>
<element name="label_99">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2146,19 +2146,19 @@
</text>
</element>
<element name="label_103">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_104">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_105">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2200,7 +2200,7 @@
</text>
</element>
<element name="label_112">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.25" green="0.23" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -50,7 +50,7 @@
<rect state="0">
<color red="0.25" green="0.23" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -150,7 +150,7 @@
<rect state="0">
<color red="0.25" green="0.23" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -170,7 +170,7 @@
<rect state="0">
<color red="0.25" green="0.23" blue="0.00"/>
</rect>
<text string="&#xA3;1 Special">
<text string="£1 Special">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -250,7 +250,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -270,7 +270,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -290,7 +290,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -606,7 +606,7 @@
<rect state="0">
<color red="0.24" green="0.07" blue="0.01"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -974,7 +974,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1138,7 +1138,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1158,7 +1158,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1178,7 +1178,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1198,7 +1198,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1322,7 +1322,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1482,7 +1482,7 @@
<rect state="0">
<color red="0.24" green="0.07" blue="0.01"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1550,7 +1550,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="NO &#xA3;1 COINS">
<text string="NO £1 COINS">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1954,7 +1954,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2054,25 +2054,25 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_14">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_15">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_16">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_17">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2114,7 +2114,7 @@
</text>
</element>
<element name="label_54">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2132,13 +2132,13 @@
</text>
</element>
<element name="label_65">
<text string="&#xA3;1 Hi-Roller">
<text string="£1 Hi-Roller">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_80">
<text string="&#xA3;2 Hi-Roller">
<text string="£2 Hi-Roller">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.19" green="0.19" blue="0.19"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -842,7 +842,7 @@
<disk state="0">
<color red="0.16" green="0.14" blue="0.09"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -862,7 +862,7 @@
<disk state="0">
<color red="0.16" green="0.14" blue="0.09"/>
</disk>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -882,7 +882,7 @@
<disk state="0">
<color red="0.16" green="0.14" blue="0.09"/>
</disk>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1906,7 +1906,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1992,7 +1992,7 @@
</led7seg>
</element>
<element name="label_13">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -70,7 +70,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -90,7 +90,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -110,7 +110,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -130,7 +130,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -150,7 +150,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1046,7 +1046,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1278,7 +1278,7 @@
</text>
</element>
<element name="label_51">
<text string="BANK &#xA3;">
<text string="BANK £">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1306,7 +1306,7 @@
</text>
</element>
<element name="label_60">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1318,19 +1318,19 @@
</text>
</element>
<element name="label_69">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_71">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1360,7 +1360,7 @@
</text>
</element>
<element name="label_76">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -430,7 +430,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -450,7 +450,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -470,7 +470,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -490,7 +490,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -510,7 +510,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -530,7 +530,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -550,7 +550,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -570,7 +570,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -590,7 +590,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -610,7 +610,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -630,7 +630,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -650,7 +650,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -670,7 +670,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -690,7 +690,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -710,7 +710,7 @@
<disk state="0">
<color red="0.22" green="0.20" blue="0.02"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -930,7 +930,7 @@
<disk state="0">
<color red="0.25" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1010,7 +1010,7 @@
<disk state="0">
<color red="0.25" green="0.21" blue="0.00"/>
</disk>
<text string="&#xA3;2.50">
<text string="£2.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1170,7 +1170,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1682,7 +1682,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1830,37 +1830,37 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_88">
<text string="&#xA3;6.40,&#xA3;60">
<text string="£6.40,£60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_89">
<text string="&#xA3;1.60,&#xA3;12.50">
<text string="£1.60,£12.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_90">
<text string="&#xA3;3.20,&#xA3;25">
<text string="£3.20,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_91">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_92">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_93">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1878,13 +1878,13 @@
</text>
</element>
<element name="label_96">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_98">
<text string="10p,20p,80p,&#xA3;12.50">
<text string="10p,20p,80p,£12.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1902,31 +1902,31 @@
</text>
</element>
<element name="label_101">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_102">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_103">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_104">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_105">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -46,7 +46,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -82,7 +82,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -102,7 +102,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -158,7 +158,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -194,7 +194,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -214,7 +214,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -250,7 +250,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -334,7 +334,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -354,7 +354,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -374,7 +374,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -394,7 +394,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -414,7 +414,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -434,7 +434,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -706,7 +706,7 @@
<rect state="0">
<color red="0.25" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -890,7 +890,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -910,7 +910,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -930,7 +930,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -950,7 +950,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1874,7 +1874,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1894,7 +1894,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1914,7 +1914,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1934,7 +1934,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1954,7 +1954,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1974,7 +1974,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2018,7 +2018,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2478,7 +2478,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2741,19 +2741,19 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_106">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_107">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_108">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -46,7 +46,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -66,7 +66,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -86,7 +86,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -106,7 +106,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -126,7 +126,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -246,7 +246,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -577,13 +577,13 @@
</text>
</element>
<element name="label_18">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_19">
<text string="&#xA3;4.00 JACKPOT">
<text string="£4.00 JACKPOT">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -66,7 +66,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="Each Lit Card Pays &#xA3;4">
<text string="Each Lit Card Pays £4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="Each Lit Card Pays &#xA3;2">
<text string="Each Lit Card Pays £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="Each Lit Card Pays &#xA3;1">
<text string="Each Lit Card Pays £1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -314,7 +314,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -742,7 +742,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -842,79 +842,79 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_59">
<text string="&#xA3;3.20,&#xA3;12.80">
<text string="£3.20,£12.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_60">
<text string="&#xA3;3.20,&#xA3;12.80">
<text string="£3.20,£12.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_61">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_62">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_63">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_64">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_65">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_66">
<text string="40p,80p,&#xA3;3.20,&#xA3;50">
<text string="40p,80p,£3.20,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_67">
<text string="&#xA3;6.40,&#xA3;50">
<text string="£6.40,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_68">
<text string="&#xA3;12.80,&#xA3;75">
<text string="£12.80,£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_69">
<text string="&#xA3;12.80,&#xA3;100">
<text string="£12.80,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="&#xA3;25,&#xA3;100">
<text string="£25,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_98">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -926,7 +926,7 @@
</text>
</element>
<element name="label_103">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -944,7 +944,7 @@
</text>
</element>
<element name="label_149">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.19"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -506,7 +506,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -781,7 +781,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_8">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -799,19 +799,19 @@
</text>
</element>
<element name="label_17">
<text string="&#xA3;6.00">
<text string="£6.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_18">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_19">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -841,7 +841,7 @@
</text>
</element>
<element name="label_24">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -106,7 +106,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="no &#xA3;1 coin accepted">
<text string="no £1 coin accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -914,7 +914,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1074,7 +1074,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1094,7 +1094,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1130,7 +1130,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;30">
<text string="£30">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1166,7 +1166,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1366,7 +1366,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1658,37 +1658,37 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_13">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_18">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_23">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_32">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_37">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_38">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -970,7 +970,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -990,7 +990,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1010,7 +1010,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1150,7 +1150,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1551,25 +1551,25 @@
</text>
</element>
<element name="label_94">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_98">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_105">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_106">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -90,7 +90,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -170,7 +170,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -190,7 +190,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -210,7 +210,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -230,7 +230,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1262,7 +1262,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1569,13 +1569,13 @@
</text>
</element>
<element name="label_53">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_64">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1591,19 +1591,19 @@
</text>
</element>
<element name="label_80">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_81">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_82">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1633,7 +1633,7 @@
</text>
</element>
<element name="label_87">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -406,7 +406,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -667,7 +667,7 @@
</text>
</element>
<element name="label_47">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -126,7 +126,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -634,7 +634,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1022,7 +1022,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1 (0)">
<text string="£1 (0)">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1191,19 +1191,19 @@
</text>
</element>
<element name="label_4">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_37">
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_38">
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1239,7 +1239,7 @@
</text>
</element>
<element name="label_63">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -286,7 +286,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -619,7 +619,7 @@
</text>
</element>
<element name="label_29">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -674,7 +674,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -694,7 +694,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;30">
<text string="£30">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -750,7 +750,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -850,7 +850,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -870,7 +870,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;30">
<text string="£30">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -890,7 +890,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -910,7 +910,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -930,7 +930,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1194,7 +1194,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1300,145 +1300,145 @@
</text>
</element>
<element name="label_8">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_9">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_10">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_11">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_12">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_13">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_14">
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_15">
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_16">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_17">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_18">
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_19">
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_20">
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_21">
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_22">
<text string="&#xA3;30">
<text string="£30">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_23">
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_24">
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_25">
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_26">
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_27">
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_28">
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_29">
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_30">
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_31">
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -70,7 +70,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -550,7 +550,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -570,7 +570,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -590,7 +590,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -670,7 +670,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -690,7 +690,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1290,7 +1290,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1609,7 +1609,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_20">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1645,25 +1645,25 @@
</text>
</element>
<element name="label_77">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_78">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_79">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_87">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1675,7 +1675,7 @@
</text>
</element>
<element name="label_93">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -126,7 +126,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1766,7 +1766,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2069,13 +2069,13 @@
</led7seg>
</element>
<element name="label_35">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_36">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2099,15 +2099,15 @@
</text>
</element>
<element name="label_109">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.18"/>
</text>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.41" width="0.90" height="0.18"/>
</text>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.77" width="0.90" height="0.18"/>
</text>
@ -2119,7 +2119,7 @@
</text>
</element>
<element name="label_111">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1269,25 +1269,25 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_71">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_72">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_73">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_74">
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -326,7 +326,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -346,7 +346,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -366,7 +366,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -406,7 +406,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -426,7 +426,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.80">
<text string="£2.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -590,7 +590,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;6.00">
<text string="£6.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -854,7 +854,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1075,31 +1075,31 @@
</text>
</element>
<element name="label_58">
<text string="&#xA3;6.00">
<text string="£6.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_59">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_60">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_61">
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_62">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -62,7 +62,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -82,7 +82,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -102,7 +102,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -786,7 +786,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;2 Special">
<text string="£2 Special">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -806,7 +806,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -826,7 +826,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;1 Special">
<text string="£1 Special">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -846,7 +846,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1334,7 +1334,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1354,7 +1354,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1374,7 +1374,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1394,7 +1394,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1414,7 +1414,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1434,7 +1434,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1454,7 +1454,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1474,7 +1474,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1494,7 +1494,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1514,7 +1514,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1534,7 +1534,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="NO &#xA3;1 COINS">
<text string="NO £1 COINS">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1782,7 +1782,7 @@
<rect state="0">
<color red="0.18" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1802,7 +1802,7 @@
<rect state="0">
<color red="0.18" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1822,7 +1822,7 @@
<rect state="0">
<color red="0.18" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1842,7 +1842,7 @@
<rect state="0">
<color red="0.18" green="0.15" blue="0.23"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1862,7 +1862,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1882,7 +1882,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1902,7 +1902,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1922,7 +1922,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2030,7 +2030,7 @@
<rect state="0">
<color red="0.23" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2074,7 +2074,7 @@
<rect state="0">
<color red="0.23" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2094,7 +2094,7 @@
<rect state="0">
<color red="0.23" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2114,7 +2114,7 @@
<rect state="0">
<color red="0.23" green="0.15" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2482,7 +2482,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2577,25 +2577,25 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_13">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_14">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_15">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_16">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -994,7 +994,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.07"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1014,7 +1014,7 @@
<rect state="0">
<color red="0.22" green="0.09" blue="0.03"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1034,7 +1034,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.01"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1054,7 +1054,7 @@
<rect state="0">
<color red="0.23" green="0.16" blue="0.02"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1074,7 +1074,7 @@
<rect state="0">
<color red="0.22" green="0.09" blue="0.03"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1194,7 +1194,7 @@
<rect state="0">
<color red="0.25" green="0.15" blue="0.05"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1652,7 +1652,7 @@
</led7seg>
</element>
<element name="label_50">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -150,7 +150,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -422,7 +422,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1522,7 +1522,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>

View File

@ -266,7 +266,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -798,7 +798,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -866,7 +866,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -886,7 +886,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -954,7 +954,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2802,7 +2802,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -626,7 +626,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -646,7 +646,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -766,7 +766,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -786,7 +786,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -806,7 +806,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -826,7 +826,7 @@
<rect state="0">
<color red="0.00" green="0.00" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -866,7 +866,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -946,7 +946,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -966,7 +966,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1230,7 +1230,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1250,7 +1250,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1270,7 +1270,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1625,19 +1625,19 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_25">
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_26">
<text string="&#xA3;2.">
<text string="£2.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_27">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -594,7 +594,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -974,7 +974,7 @@
<disk state="0">
<color red="0.25" green="0.18" blue="0.12"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -994,7 +994,7 @@
<disk state="0">
<color red="0.25" green="0.18" blue="0.12"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1014,7 +1014,7 @@
<disk state="0">
<color red="0.25" green="0.18" blue="0.12"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1034,7 +1034,7 @@
<disk state="0">
<color red="0.25" green="0.18" blue="0.12"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1290,7 +1290,7 @@
<rect state="0">
<color red="0.15" green="0.25" blue="0.15"/>
</rect>
<text string="&#xA3;4 JACKPOT">
<text string="£4 JACKPOT">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1310,7 +1310,7 @@
<rect state="0">
<color red="0.15" green="0.25" blue="0.15"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1330,7 +1330,7 @@
<rect state="0">
<color red="0.15" green="0.25" blue="0.15"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1350,7 +1350,7 @@
<rect state="0">
<color red="0.15" green="0.25" blue="0.15"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1370,7 +1370,7 @@
<rect state="0">
<color red="0.15" green="0.25" blue="0.15"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1678,7 +1678,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1871,7 +1871,7 @@
</text>
</element>
<element name="label_73">
<text string="&#xA3;1 PACKET">
<text string="£1 PACKET">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1883,7 +1883,7 @@
</text>
</element>
<element name="label_98">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -826,7 +826,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="LINK COINS UP TO WIN MAXIMUM &#xA3;1">
<text string="LINK COINS UP TO WIN MAXIMUM £1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -846,7 +846,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.06"/>
</rect>
<text string="LIGHT NEXT ROW MAXIMIM &#xA3;1">
<text string="LIGHT NEXT ROW MAXIMIM £1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1214,7 +1214,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -242,7 +242,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -262,7 +262,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string=" &#xA3;1.60">
<text string=" £1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -282,7 +282,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -302,7 +302,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -322,7 +322,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1798,7 +1798,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1923,7 +1923,7 @@
</text>
</element>
<element name="label_35">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2013,25 +2013,25 @@
</text>
</element>
<element name="label_115">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_116">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_117">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_118">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -446,7 +446,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -466,7 +466,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -486,7 +486,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -966,7 +966,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -478,7 +478,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -802,7 +802,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -822,7 +822,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -846,7 +846,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -866,7 +866,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1130,7 +1130,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1150,7 +1150,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;9">
<text string="£9">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1170,7 +1170,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;8">
<text string="£8">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1190,7 +1190,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;7">
<text string="£7">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1210,7 +1210,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;6">
<text string="£6">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1230,7 +1230,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1250,7 +1250,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1270,7 +1270,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1290,7 +1290,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1310,7 +1310,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1430,7 +1430,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1450,7 +1450,7 @@
<rect state="0">
<color red="0.05" green="0.15" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1470,7 +1470,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1490,7 +1490,7 @@
<rect state="0">
<color red="0.05" green="0.15" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1534,7 +1534,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1554,7 +1554,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1574,7 +1574,7 @@
<rect state="0">
<color red="0.05" green="0.15" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1594,7 +1594,7 @@
<rect state="0">
<color red="0.05" green="0.15" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1638,7 +1638,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1658,7 +1658,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1678,7 +1678,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1722,7 +1722,7 @@
<rect state="0">
<color red="0.23" green="0.18" blue="0.02"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1742,7 +1742,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1762,7 +1762,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1782,7 +1782,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1802,7 +1802,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2330,7 +2330,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2467,25 +2467,25 @@
</text>
</element>
<element name="label_133">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_134">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_135">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_136">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -806,7 +806,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -846,7 +846,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -866,7 +866,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1306,7 +1306,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1598,7 +1598,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_54">
<text string="&#xA3;75">
<text string="£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -162,7 +162,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="PAYS &#xA3;1">
<text string="PAYS £1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -182,7 +182,7 @@
<disk state="0">
<color red="0.25" green="0.22" blue="0.00"/>
</disk>
<text string="&#xA3;15">
<text string="£15">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -202,7 +202,7 @@
<disk state="0">
<color red="0.25" green="0.22" blue="0.00"/>
</disk>
<text string="&#xA3;25">
<text string="£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -222,7 +222,7 @@
<disk state="0">
<color red="0.25" green="0.22" blue="0.00"/>
</disk>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -242,7 +242,7 @@
<disk state="0">
<color red="0.25" green="0.22" blue="0.00"/>
</disk>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -286,7 +286,7 @@
<disk state="0">
<color red="0.25" green="0.22" blue="0.00"/>
</disk>
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -306,7 +306,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1410,7 +1410,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1550,73 +1550,73 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_92">
<text string="&#xA3;12.50,&#xA3;100">
<text string="£12.50,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_93">
<text string="&#xA3;6.40,&#xA3;50">
<text string="£6.40,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_94">
<text string="&#xA3;3.20,&#xA3;25">
<text string="£3.20,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_95">
<text string="&#xA3;3.20,&#xA3;12.50">
<text string="£3.20,£12.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_96">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_97">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_98">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_99">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_100">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_101">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_102">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_103">
<text string="20p,40p,&#xA3;1.60,&#xA3;25">
<text string="20p,40p,£1.60,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -350,7 +350,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -390,7 +390,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -430,7 +430,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -470,7 +470,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -490,7 +490,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -510,7 +510,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;150">
<text string="£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -550,7 +550,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -570,7 +570,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -590,7 +590,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -610,7 +610,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;2.50">
<text string="£2.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -630,7 +630,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -650,7 +650,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -670,7 +670,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;15">
<text string="£15">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -690,7 +690,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -710,7 +710,7 @@
<rect state="0">
<color red="0.24" green="0.20" blue="0.00"/>
</rect>
<text string="&#xA3;25">
<text string="£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1058,7 +1058,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1102,7 +1102,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Or Diagonally Pay &#xA3;2.">
<text string="Or Diagonally Pay £2.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
@ -1166,7 +1166,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1474,7 +1474,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_74">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1486,85 +1486,85 @@
</text>
</element>
<element name="label_84">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_90">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_91">
<text string="40p,80p,&#xA3;3.20,&#xA3;50">
<text string="40p,80p,£3.20,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_92">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_93">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_94">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_95">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_96">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_97">
<text string="&#xA3;3.20,&#xA3;12.80">
<text string="£3.20,£12.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_98">
<text string="&#xA3;3.20,&#xA3;12.80">
<text string="£3.20,£12.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_99">
<text string="&#xA3;6.40,&#xA3;50">
<text string="£6.40,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_100">
<text string="&#xA3;12.80,&#xA3;100">
<text string="£12.80,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_101">
<text string="&#xA3;12.80,&#xA3;75">
<text string="£12.80,£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_102">
<text string="&#xA3;25,&#xA3;150">
<text string="£25,£150">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -646,7 +646,7 @@
<disk state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</disk>
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -726,7 +726,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -746,7 +746,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -846,7 +846,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -866,7 +866,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -910,7 +910,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.09"/>
</text>
<text string="0=&#xA3;1">
<text string="0=£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.59" width="0.90" height="0.09"/>
</text>
@ -1002,7 +1002,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1275,19 +1275,19 @@
</text>
</element>
<element name="label_44">
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_45">
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_46">
<text string="&#xA3;4.80">
<text string="£4.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1315,7 +1315,7 @@
</text>
</element>
<element name="label_60">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -370,7 +370,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.30"/>
</text>
<text string="Or Diagonally Pay &#xA3;2">
<text string="Or Diagonally Pay £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.35" width="0.90" height="0.30"/>
</text>
@ -810,7 +810,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -830,7 +830,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -850,7 +850,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;15">
<text string="£15">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -870,7 +870,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.13"/>
</rect>
<text string="&#xA3;10">
<text string="£10">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -890,7 +890,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -910,7 +910,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1150,7 +1150,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1210,7 +1210,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1350,7 +1350,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1370,7 +1370,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;20">
<text string="£20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1390,7 +1390,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1410,7 +1410,7 @@
<rect state="0">
<color red="0.24" green="0.21" blue="0.01"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1430,7 +1430,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1450,7 +1450,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1470,7 +1470,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1554,7 +1554,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 Coins Accepted">
<text string="No £1 Coins Accepted">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1782,7 +1782,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1888,85 +1888,85 @@
</text>
</element>
<element name="label_67">
<text string="&#xA3;12.50,&#xA3;100">
<text string="£12.50,£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_68">
<text string="&#xA3;6.40,&#xA3;75">
<text string="£6.40,£75">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_69">
<text string="&#xA3;6.40,&#xA3;50">
<text string="£6.40,£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_70">
<text string="&#xA3;3.20,&#xA3;25">
<text string="£3.20,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_71">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_72">
<text string="&#xA3;1.60,&#xA3;6.40">
<text string="£1.60,£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_73">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_74">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_75">
<text string="80p,&#xA3;3.20">
<text string="80p,£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_76">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_77">
<text string="40p,&#xA3;1.60">
<text string="40p,£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_78">
<text string="20p,40p,&#xA3;1.60,&#xA3;25">
<text string="20p,40p,£1.60,£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_90">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_125">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1054,7 +1054,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1074,7 +1074,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1094,7 +1094,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1114,7 +1114,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1134,7 +1134,7 @@
<disk state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1354,7 +1354,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1374,7 +1374,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1394,7 +1394,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1414,7 +1414,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;5">
<text string="£5">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1434,7 +1434,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1454,7 +1454,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1514,7 +1514,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1574,7 +1574,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1594,7 +1594,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1614,7 +1614,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1790,7 +1790,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2181,19 +2181,19 @@
</text>
</element>
<element name="label_127">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_128">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_129">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2229,7 +2229,7 @@
</text>
</element>
<element name="label_135">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -226,7 +226,7 @@
<rect state="0">
<color red="0.22" green="0.22" blue="0.22"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -266,7 +266,7 @@
<rect state="0">
<color red="0.22" green="0.22" blue="0.22"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -490,7 +490,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -226,7 +226,7 @@
<rect state="0">
<color red="0.22" green="0.22" blue="0.22"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -266,7 +266,7 @@
<rect state="0">
<color red="0.22" green="0.22" blue="0.22"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -490,7 +490,7 @@
<rect state="0">
<color red="0.13" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -310,7 +310,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.00"/>
</rect>
<text string="BIG &#xA3;2">
<text string="BIG £2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -498,7 +498,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -762,7 +762,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -782,7 +782,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -802,7 +802,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -822,7 +822,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -842,7 +842,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;4.">
<text string="£4.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -922,7 +922,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -942,7 +942,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2.">
<text string="£2.">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1014,7 +1014,7 @@
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
</text>
@ -1302,7 +1302,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.40">
<text string="£2.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1322,7 +1322,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.60">
<text string="£2.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1342,7 +1342,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1362,7 +1362,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1382,7 +1382,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.80">
<text string="£2.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1402,7 +1402,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1422,7 +1422,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1442,7 +1442,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1542,7 +1542,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1562,7 +1562,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.80">
<text string="£1.80">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1582,7 +1582,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1602,7 +1602,7 @@
<rect state="0">
<color red="0.06" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.20">
<text string="£2.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1670,7 +1670,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1976,25 +1976,25 @@
</text>
</element>
<element name="label_269">
<text string="&#xA3;2 ">
<text string="£2 ">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_270">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_271">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_272">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -709,25 +709,25 @@
</text>
</element>
<element name="label_38">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_39">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_43">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_47">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -846,7 +846,7 @@
<rect state="0">
<color red="0.22" green="0.09" blue="0.03"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -866,7 +866,7 @@
<rect state="0">
<color red="0.23" green="0.16" blue="0.02"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -886,7 +886,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.01"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -906,7 +906,7 @@
<rect state="0">
<color red="0.22" green="0.09" blue="0.03"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -926,7 +926,7 @@
<rect state="0">
<color red="0.23" green="0.16" blue="0.02"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1694,7 +1694,7 @@
</text>
</element>
<element name="label_57">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1706,7 +1706,7 @@
</text>
</element>
<element name="label_65">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.00" green="0.24" blue="0.20"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -66,7 +66,7 @@
<rect state="0">
<color red="0.00" green="0.24" blue="0.20"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -86,7 +86,7 @@
<rect state="0">
<color red="0.00" green="0.24" blue="0.20"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -106,7 +106,7 @@
<rect state="0">
<color red="0.00" green="0.24" blue="0.20"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -126,7 +126,7 @@
<rect state="0">
<color red="0.00" green="0.24" blue="0.20"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -146,7 +146,7 @@
<disk state="0">
<color red="0.20" green="0.18" blue="0.05"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -886,7 +886,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1+">
<text string="£1+">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -966,7 +966,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -986,7 +986,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1266,7 +1266,7 @@
<rect state="0">
<color red="0.25" green="0.21" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1690,7 +1690,7 @@
<rect state="0">
<color red="0.18" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1819,19 +1819,19 @@
</text>
</element>
<element name="label_75">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_76">
<text string="&#xA3;1+">
<text string="£1+">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_77">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -266,7 +266,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;6">
<text string="£6">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -286,7 +286,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -306,7 +306,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -326,7 +326,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -346,7 +346,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -366,7 +366,7 @@
<rect state="0">
<color red="0.24" green="0.19" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -938,7 +938,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1050,7 +1050,7 @@
</text>
</element>
<element name="label_87">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -226,7 +226,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -246,7 +246,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -266,7 +266,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -334,7 +334,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -354,7 +354,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -374,7 +374,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;25">
<text string="£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -394,7 +394,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;12.50">
<text string="£12.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -414,7 +414,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -434,7 +434,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -454,7 +454,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;6.40">
<text string="£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -909,7 +909,7 @@
</text>
</element>
<element name="label_33">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -927,61 +927,61 @@
</text>
</element>
<element name="label_46">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_51">
<text string="&#xA3;100">
<text string="£100">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_52">
<text string="&#xA3;25">
<text string="£25">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_57">
<text string="&#xA3;50">
<text string="£50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_74">
<text string="&#xA3;12.50">
<text string="£12.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_108">
<text string="&#xA3;6.40">
<text string="£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_109">
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_110">
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_111">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_112">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1017,55 +1017,55 @@
</text>
</element>
<element name="label_118">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_119">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_120">
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_121">
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_122">
<text string="&#xA3;3.20">
<text string="£3.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_123">
<text string="&#xA3;6.40">
<text string="£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_124">
<text string="&#xA3;6.40">
<text string="£6.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_125">
<text string="&#xA3;12.50">
<text string="£12.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_162">
<text string="&#xA3;25.00">
<text string="£25.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1095,7 +1095,7 @@
</text>
</element>
<element name="label_172">
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -46,7 +46,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -126,7 +126,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.40">
<text string="£1.40">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -146,7 +146,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.00" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1130,7 +1130,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1453,7 +1453,7 @@
<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_35">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1475,25 +1475,25 @@
</text>
</element>
<element name="label_52">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_66">
<text string="&#xA3;3.00">
<text string="£3.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_67">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_68">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1523,7 +1523,7 @@
</text>
</element>
<element name="label_73">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -26,7 +26,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="No &#xA3;1 cOINS aCCEPTED">
<text string="No £1 cOINS aCCEPTED">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -166,7 +166,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -186,7 +186,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -206,7 +206,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -226,7 +226,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1.60">
<text string="£1.60">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -246,7 +246,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -266,7 +266,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.06"/>
</rect>
<text string="&#xA3;1.20">
<text string="£1.20">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -842,7 +842,7 @@
<disk state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -862,7 +862,7 @@
<disk state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -882,7 +882,7 @@
<disk state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -902,7 +902,7 @@
<disk state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -922,7 +922,7 @@
<disk state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -1542,7 +1542,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1562,7 +1562,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1602,7 +1602,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1662,7 +1662,7 @@
<rect state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</rect>
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2662,7 +2662,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -3079,13 +3079,13 @@
</text>
</element>
<element name="label_55">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_57">
<text string="&#xA3;3">
<text string="£3">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -3097,7 +3097,7 @@
</text>
</element>
<element name="label_60">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -3155,13 +3155,13 @@
</text>
</element>
<element name="label_131">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_133">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -110,7 +110,7 @@
<disk state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</disk>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -130,7 +130,7 @@
<disk state="0">
<color red="0.13" green="0.13" blue="0.25"/>
</disk>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
</text>
@ -786,7 +786,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -866,7 +866,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -886,7 +886,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -970,7 +970,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1282,19 +1282,19 @@
</text>
</element>
<element name="label_56">
<text string="&#xA3;4.00">
<text string="£4.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_57">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_58">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1312,7 +1312,7 @@
</text>
</element>
<element name="label_61">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1150,7 +1150,7 @@
<rect state="0">
<color red="0.25" green="0.22" blue="0.22"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1270,7 +1270,7 @@
<rect state="0">
<color red="0.25" green="0.19" blue="0.19"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1290,7 +1290,7 @@
<rect state="0">
<color red="0.25" green="0.20" blue="0.20"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1694,7 +1694,7 @@
<rect state="0">
<color red="0.06" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1989,7 +1989,7 @@
</text>
</element>
<element name="label_80">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2005,7 +2005,7 @@
</text>
</element>
<element name="label_93">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -282,7 +282,7 @@
<rect state="0">
<color red="0.25" green="0.10" blue="0.10"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -382,7 +382,7 @@
<rect state="0">
<color red="0.25" green="0.10" blue="0.10"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -402,7 +402,7 @@
<rect state="0">
<color red="0.15" green="0.20" blue="0.24"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -422,7 +422,7 @@
<rect state="0">
<color red="0.15" green="0.20" blue="0.24"/>
</rect>
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1238,7 +1238,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1290,7 +1290,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1310,7 +1310,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1394,7 +1394,7 @@
<rect state="0">
<color red="0.00" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1982,7 +1982,7 @@
<rect state="0">
<color red="0.25" green="0.10" blue="0.10"/>
</rect>
<text string="&#xA3;2 + Big">
<text string="£2 + Big">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -2006,7 +2006,7 @@
<rect state="0">
<color red="0.15" green="0.20" blue="0.24"/>
</rect>
<text string="&#xA3;4 + Big">
<text string="£4 + Big">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -2050,7 +2050,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2295,7 +2295,7 @@
</text>
</element>
<element name="label_26">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -2343,25 +2343,25 @@
</text>
</element>
<element name="label_123">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_124">
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_125">
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_126">
<text string="&#xA3;4">
<text string="£4">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -506,7 +506,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -526,7 +526,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1.50">
<text string="£1.50">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -546,7 +546,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1264,7 +1264,7 @@
</led7seg>
</element>
<element name="label_9">
<text string="BANK &#xA3;">
<text string="BANK £">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1292,7 +1292,7 @@
</text>
</element>
<element name="label_18">
<text string="&#xA3;">
<text string="£">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1304,7 +1304,7 @@
</text>
</element>
<element name="label_52">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -542,7 +542,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.13"/>
</rect>
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1106,7 +1106,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.00"/>
</rect>
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -1330,7 +1330,7 @@
<rect state="0">
<color red="0.25" green="0.13" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1602,7 +1602,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1811,13 +1811,13 @@
</text>
</element>
<element name="label_88">
<text string="&#xA3;1.00">
<text string="£1.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
</element>
<element name="label_89">
<text string="&#xA3;2.00">
<text string="£2.00">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>

View File

@ -1578,7 +1578,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1658,7 +1658,7 @@
<rect state="0">
<color red="0.13" green="0.25" blue="0.13"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
</text>
@ -1970,7 +1970,7 @@
<rect state="0">
<color red="0.25" green="0.00" blue="0.00"/>
</rect>
<text string="&#xA3;2">
<text string="£2">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>
@ -2494,7 +2494,7 @@
<rect state="0">
<color red="0.25" green="0.25" blue="0.25"/>
</rect>
<text string="&#xA3;1">
<text string="£1">
<color red="0.0" green="0.0" blue="0.0"/>
<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
</text>

Some files were not shown because too many files have changed in this diff Show More