summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/layout/sc4mou.lay
blob: c9c3a563e02560dd2e476b8aa04fd76132d202bd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200











































































































































































































































































































































































































































































                                                                              
                                   










































































































































                                                                              
                                   






























































































































































































                                                                              
                                    






















                                                                              
                                   














































































































































































































































                                                                              
                                   






















                                                                              
                                    






















































































































                                                                              
                                    






















                                                                              
                                         














































































































































































































































































































































































































































































































































































































































                                                                              
                                   


















































                                                                              
                                   


















                                                                              
                                    


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                    


































































































                                                                              
                                    


























































































                                                                              
                                   






















































































































































































































































































































































                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                   


















                                                                              
                                      


















                                                                              
                                      


















                                                                              
                                   


















                                                                              
                                      


















                                                                              
                                   


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                      


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   






























































































































































































































































































































































































                                                                                                                                                                              







                                                                                                                                                    
                  

                                       



                                                                              

                                    
                                                                 
                                                                              
                       
                                     
                                                                 
                                                                              

                       

                                     



                                                                              

                                        



                                                                              

                                              
                                                                 
                       
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  















                                                                                      
                  






                                                                    
                  








                                                                                      































                                                                 
                                               
                                                                      

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                        
                          
                                                                 
                                                                                            
                          
                                                             
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                      
                                                                        

                                                               
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                                                              
                                                                      

                                                                                                       
                                                                      

                                                                          
                                                                       

                                                                   
                                                                       

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                                                              
                                                                       

                                                                                                       
                                                                       

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                     

                                                                   
                                                                     

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                      

                                                                   
                                                                       

                                                                                                            
                                                                      

                                                                                                     
                                                                      

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                          
                                                                       

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                 
                                                                        

                                                                                                          
                                                                        

                                                                                                                  
                                                                        

                                                                                                           
                                                                        

                                                                                                                 
                                                                        

                                                                                                          
                                                                        

                                                                                                                 
                                                                        

                                                                                                          
                                                                        

                                                                                                                  
                                                                        

                                                                                                           
                                                                        

                                                                                                                 
                                                                       

                                                                                                          
                                                                       

                                                                                                                  
                                                                        

                                                                                                           
                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                               
                                                                         

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                       
                                                                        

                                                       
                                                                        

                                                         
                                                                       

                                                         
                                                                      
                          


                                     
                                                     
                                                                        

                                                                        
                                                                      

                                                                            
                                                                      

                                                                        
                                                                      

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                              
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                              
                                                                       

                                                                            
                                                                       

                                                                          
                                                                       

                                                                            
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                      

                                                                              
                                                                       

                                                                               
                                                                      

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                         

                                                                       
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                       
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                               
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                         
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                         
                                                                        

                                                                              
                                                                        

                                                                         
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                           
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                         
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                           
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                          
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                          
                                                                        

                                                                                
                                                                        

                                                                          
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                        

                                                                                
                                                                       

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                          

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         
                          

               
<?xml version="1.0" encoding="UTF-8" ?>

<!--  ****************************************************  -->
<!--  * This MAME layout file was generated by MFME2MAME *  -->
<!--  * Please visit mfme2mame.org for more information. *  -->
<!--  ****************************************************  -->

<mamelayout version="2">
	<element name="backdrop_colour">
		<rect>
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_61_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_61_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Now!">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_60_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_60_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_59_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_59_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_58_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_58_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_57_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_57_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Lose">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_56_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_56_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_18_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_18_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Super">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_13_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_13_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Extra">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_10_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_10_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Extra">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_9_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_9_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_55_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_55_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_26_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_26_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Trail">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Held">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_54_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_54_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_45_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_45_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_43_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_43_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_42_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_42_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_41_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_41_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_198_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_198_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="6 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_197_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_197_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Roulett">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_196_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_196_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="4 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_195_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_195_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_194_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_194_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="2 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_193_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_193_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_192_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_192_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="2 Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Blasts">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_184_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_184_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Pick">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="A Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_185_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_185_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="5 Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Blasts">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_186_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_186_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_187_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_187_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_188_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_188_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Super">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_180_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_180_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="5 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_179_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_179_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="3 Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Blasts">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_178_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_178_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="3 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_181_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_181_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Fast">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_182_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_182_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Golden">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_183_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_183_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_177_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_177_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_176_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_176_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Link">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Up">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_172_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_172_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Belt">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_171_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_171_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="6 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_170_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_170_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="7 Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Blasts">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_169_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_169_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="10 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_167_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_167_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="8 Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Blasts">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_166_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_166_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Skill">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_165_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_165_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Crazy">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Reels">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_163_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_163_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="4 Reel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Blasts">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_164_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_164_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_168_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_168_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<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.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_160_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_160_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="8 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_161_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_161_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="7 Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spins">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_162_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_162_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Mix N">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Match">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_155_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_155_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_156_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_156_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£12">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_153_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_153_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="£25 Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="+ Rep">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_102_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_102_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_101_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_101_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_80_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_80_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="+2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_81_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.00" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_81_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.00" blue="0.25"/>
		</rect>
		<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="lamp_82_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_82_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Arrow">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_86_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_86_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_89_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_89_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_90_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_90_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_91_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.00" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_91_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.00" blue="0.25"/>
		</rect>
		<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="lamp_92_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_92_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_96_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_96_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Arrow">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_97_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_97_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_98_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_98_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_99_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_99_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_103_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_103_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Arrow">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_104_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_104_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="+2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_105_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.00" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_105_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.00" blue="0.25"/>
		</rect>
		<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="lamp_106_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_106_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_88_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_88_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="+2 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_87_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_87_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="+2 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_70_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_70_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_71_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_71_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_72_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_72_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_78_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_78_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="^">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_77_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_77_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<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="lamp_74_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_74_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="^">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_44_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_44_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Bonu">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_149_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_149_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_141_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_141_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_151_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_151_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_150_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_150_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_135_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_135_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_136_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_136_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_137_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_137_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_138_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_138_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_139_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_139_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_140_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_140_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£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>
	</element>
	<element name="lamp_144_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_144_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_145_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_145_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_146_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_146_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_147_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_147_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_148_1_border" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_148_1" defstate="0">
		<disk state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</disk>
		<disk state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</disk>
	</element>
	<element name="lamp_122_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_122_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="£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="lamp_118_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_118_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_117_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_117_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_116_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_116_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="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>
		<text string="Money">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_39_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_39_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_84_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_84_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Move">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_85_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_85_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Move">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_107_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_107_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Up">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_108_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_108_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Up">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_109_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_109_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="On">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_83_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_83_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="On">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_100_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_100_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_20_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_20_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Trail">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Skill">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_19_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_19_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Respin">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_21_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_21_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Spin">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_22_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_22_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="All In">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="View">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_23_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_23_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Add">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Again">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_24_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_24_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Number">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Runner">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_29_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_29_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Random">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Stop">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_38_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_38_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Boost">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_219_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_219_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<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="lamp_220_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_220_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<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="lamp_201_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_201_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_202_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_202_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<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="lamp_203_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_203_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<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="lamp_204_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_204_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_205_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_205_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<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="lamp_208_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_208_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_215_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_215_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_216_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_216_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<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>
	</element>
	<element name="lamp_209_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_209_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£3.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="lamp_210_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_210_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_211_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_211_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_213_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_213_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£8">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_212_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_212_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="£6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_174_border">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_174">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Exchange">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_175_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_175">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_176_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_176">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Collect">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_177_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_177">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Cancel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_178_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_178">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Hold">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_179_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_179">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Hold">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_180_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_180">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Hold">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_181_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_181">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HI">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="colour_button_182_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_182">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Hi">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="colour_button_183_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_183">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="LO">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="colour_button_184_border">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_184">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Change">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_185_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_185">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="LO">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="colour_button_186_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_186">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_187_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_187">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Take">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="reel_background">
		<rect>
			<color red="1.0" green="1.0" blue="1.0"/>
		</rect>
	</element>
	<element name="reel0" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel1" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel2" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel4" defstate="0">
		<reel reelreversed="0" stateoffset="-18432" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="led_background">
		<rect>
			<color red="0.4" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_on">
		<rect state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_on">
		<disk state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_off">
		<rect state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_off">
		<disk state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_digit_rect_black">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_red">
		<rect>
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_green">
		<rect>
			<color red="0.0" green="1.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_blue">
		<rect>
			<color red="0.0" green="0.0" blue="1.0"/>
		</rect>
	</element>
	<element name="led_digit_red">
		<led7seg>
			<color red="1.0" green="0.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_green">
		<led7seg>
			<color red="0.0" green="1.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_blue">
		<led7seg>
			<color red="0.0" green="0.5" blue="1.0"/>
		</led7seg>
	</element>
	<element name="vfd0">
		<led14segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led14segsc>
	</element>
	<element name="vfd0_background">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="reel_lamp" defstate="0">
		<rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0"      height="1.0"/>      <color red="0.50" green="0.50" blue="0.50"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75"     height="0.75"/>     <color red="0.80" green="0.80" blue="0.80"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
		<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_97">
		<text string="Move Up">
			<color red="0.0" 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="Move">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Right">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="label_138">
		<text string="Bonus">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_147">
		<text string="MFME 9.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="debug_backdrop_colour">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="debug_lamp_standard">
		<rect state="0">
			<color red="0.00" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_reel">
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
	</element>
	<element name="debug_lamp_segment">
		<rect state="0">
			<color red="0.20" green="0.00" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_button">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="256">
		<param name="n" start="0" increment="1"/>
		<element name="debug_lamp_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_button_standard">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_button_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="64">
		<param name="n" start="0" increment="1"/>
		<element name="debug_button_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_vfd">
		<led14segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led14segsc>
	</element>
	<element name="debug_stepper_value" defstate="0">
		<simplecounter maxstate="999" digits="3">
			<color red="1.0" green="1.0" blue="1.0"/>
		</simplecounter>
	</element>
	<element name="debug_reel_symbol_count_0">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_1">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_2">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_4">
		<text string="12">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>

	<view name="AWP Simulated Video">
		<element ref="backdrop_colour">
			<bounds x="0" y="0" width="916" height="676"/>
		</element>
		<element ref="reel_background">
			<bounds x="334" y="450" width="80" height="140"/>
		</element>
		<element name="lamp32" ref="reel_lamp" state="0">
			<bounds x="334.0000" y="450.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp33" ref="reel_lamp" state="0">
			<bounds x="334.0000" y="496.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp34" ref="reel_lamp" state="0">
			<bounds x="334.0000" y="543.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="334" y="450" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="416" y="450" width="80" height="140"/>
		</element>
		<element name="lamp35" ref="reel_lamp" state="0">
			<bounds x="416.0000" y="450.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp36" ref="reel_lamp" state="0">
			<bounds x="416.0000" y="496.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp37" ref="reel_lamp" state="0">
			<bounds x="416.0000" y="543.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="416" y="450" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="498" y="450" width="80" height="140"/>
		</element>
		<element name="lamp48" ref="reel_lamp" state="0">
			<bounds x="498.0000" y="450.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp49" ref="reel_lamp" state="0">
			<bounds x="498.0000" y="496.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp50" ref="reel_lamp" state="0">
			<bounds x="498.0000" y="543.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="498" y="450" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="452" y="286" width="80" height="60"/>
		</element>
		<element name="lamp65" ref="reel_lamp" state="0">
			<bounds x="452.0000" y="286.0000" width="80.0000" height="60.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<bounds x="452" y="286" width="80" height="60"/>
		</element>
		<element name="lamp61" ref="lamp_61_1_border" state="0">
			<bounds x="269" y="536" width="42" height="32"/>
		</element>
		<element name="lamp61" ref="lamp_61_1" state="0">
			<bounds x="271" y="538" width="38" height="28"/>
		</element>
		<element name="lamp60" ref="lamp_60_1_border" state="0">
			<bounds x="279" y="397" width="32" height="32"/>
		</element>
		<element name="lamp60" ref="lamp_60_1" state="0">
			<bounds x="281" y="399" width="28" height="28"/>
		</element>
		<element name="lamp59" ref="lamp_59_1_border" state="0">
			<bounds x="280" y="431" width="32" height="32"/>
		</element>
		<element name="lamp59" ref="lamp_59_1" state="0">
			<bounds x="282" y="433" width="28" height="28"/>
		</element>
		<element name="lamp58" ref="lamp_58_1_border" state="0">
			<bounds x="280" y="464" width="32" height="32"/>
		</element>
		<element name="lamp58" ref="lamp_58_1" state="0">
			<bounds x="282" y="466" width="28" height="28"/>
		</element>
		<element name="lamp57" ref="lamp_57_1_border" state="0">
			<bounds x="236" y="497" width="42" height="32"/>
		</element>
		<element name="lamp57" ref="lamp_57_1" state="0">
			<bounds x="238" y="499" width="38" height="28"/>
		</element>
		<element name="lamp56" ref="lamp_56_1_border" state="0">
			<bounds x="279" y="497" width="32" height="32"/>
		</element>
		<element name="lamp56" ref="lamp_56_1" state="0">
			<bounds x="281" y="499" width="28" height="28"/>
		</element>
		<element name="lamp18" ref="lamp_18_1_border" state="0">
			<bounds x="582" y="430" width="72" height="42"/>
		</element>
		<element name="lamp18" ref="lamp_18_1" state="0">
			<bounds x="584" y="432" width="68" height="38"/>
		</element>
		<element name="lamp13" ref="lamp_13_1_border" state="0">
			<bounds x="583" y="471" width="72" height="42"/>
		</element>
		<element name="lamp13" ref="lamp_13_1" state="0">
			<bounds x="585" y="473" width="68" height="38"/>
		</element>
		<element name="lamp10" ref="lamp_10_1_border" state="0">
			<bounds x="583" y="512" width="72" height="42"/>
		</element>
		<element name="lamp10" ref="lamp_10_1" state="0">
			<bounds x="585" y="514" width="68" height="38"/>
		</element>
		<element name="lamp9" ref="lamp_9_1_border" state="0">
			<bounds x="583" y="552" width="72" height="42"/>
		</element>
		<element name="lamp9" ref="lamp_9_1" state="0">
			<bounds x="585" y="554" width="68" height="38"/>
		</element>
		<element name="lamp55" ref="lamp_55_1_border" state="0">
			<bounds x="292" y="594" width="37" height="37"/>
		</element>
		<element name="lamp55" ref="lamp_55_1" state="0">
			<bounds x="294" y="596" width="33" height="33"/>
		</element>
		<element name="lamp26" ref="lamp_26_1_border" state="0">
			<bounds x="242" y="594" width="37" height="37"/>
		</element>
		<element name="lamp26" ref="lamp_26_1" state="0">
			<bounds x="244" y="596" width="33" height="33"/>
		</element>
		<element name="lamp54" ref="lamp_54_1_border" state="0">
			<bounds x="341" y="594" width="37" height="37"/>
		</element>
		<element name="lamp54" ref="lamp_54_1" state="0">
			<bounds x="343" y="596" width="33" height="33"/>
		</element>
		<element name="lamp45" ref="lamp_45_1_border" state="0">
			<bounds x="390" y="594" width="37" height="37"/>
		</element>
		<element name="lamp45" ref="lamp_45_1" state="0">
			<bounds x="392" y="596" width="33" height="33"/>
		</element>
		<element name="lamp43" ref="lamp_43_1_border" state="0">
			<bounds x="492" y="593" width="37" height="37"/>
		</element>
		<element name="lamp43" ref="lamp_43_1" state="0">
			<bounds x="494" y="595" width="33" height="33"/>
		</element>
		<element name="lamp42" ref="lamp_42_1_border" state="0">
			<bounds x="543" y="593" width="37" height="37"/>
		</element>
		<element name="lamp42" ref="lamp_42_1" state="0">
			<bounds x="545" y="595" width="33" height="33"/>
		</element>
		<element name="lamp41" ref="lamp_41_1_border" state="0">
			<bounds x="598" y="593" width="37" height="37"/>
		</element>
		<element name="lamp41" ref="lamp_41_1" state="0">
			<bounds x="600" y="595" width="33" height="33"/>
		</element>
		<element name="lamp198" ref="lamp_198_1_border" state="0">
			<bounds x="283" y="69" width="62" height="32"/>
		</element>
		<element name="lamp198" ref="lamp_198_1" state="0">
			<bounds x="285" y="71" width="58" height="28"/>
		</element>
		<element name="lamp197" ref="lamp_197_1_border" state="0">
			<bounds x="283" y="99" width="62" height="32"/>
		</element>
		<element name="lamp197" ref="lamp_197_1" state="0">
			<bounds x="285" y="101" width="58" height="28"/>
		</element>
		<element name="lamp196" ref="lamp_196_1_border" state="0">
			<bounds x="283" y="129" width="62" height="32"/>
		</element>
		<element name="lamp196" ref="lamp_196_1" state="0">
			<bounds x="285" y="131" width="58" height="28"/>
		</element>
		<element name="lamp195" ref="lamp_195_1_border" state="0">
			<bounds x="283" y="159" width="62" height="32"/>
		</element>
		<element name="lamp195" ref="lamp_195_1" state="0">
			<bounds x="285" y="161" width="58" height="28"/>
		</element>
		<element name="lamp194" ref="lamp_194_1_border" state="0">
			<bounds x="283" y="189" width="62" height="32"/>
		</element>
		<element name="lamp194" ref="lamp_194_1" state="0">
			<bounds x="285" y="191" width="58" height="28"/>
		</element>
		<element name="lamp193" ref="lamp_193_1_border" state="0">
			<bounds x="283" y="219" width="62" height="32"/>
		</element>
		<element name="lamp193" ref="lamp_193_1" state="0">
			<bounds x="285" y="221" width="58" height="28"/>
		</element>
		<element name="lamp192" ref="lamp_192_1_border" state="0">
			<bounds x="343" y="219" width="62" height="32"/>
		</element>
		<element name="lamp192" ref="lamp_192_1" state="0">
			<bounds x="345" y="221" width="58" height="28"/>
		</element>
		<element name="lamp184" ref="lamp_184_1_border" state="0">
			<bounds x="343" y="69" width="62" height="32"/>
		</element>
		<element name="lamp184" ref="lamp_184_1" state="0">
			<bounds x="345" y="71" width="58" height="28"/>
		</element>
		<element name="lamp185" ref="lamp_185_1_border" state="0">
			<bounds x="343" y="99" width="62" height="32"/>
		</element>
		<element name="lamp185" ref="lamp_185_1" state="0">
			<bounds x="345" y="101" width="58" height="28"/>
		</element>
		<element name="lamp186" ref="lamp_186_1_border" state="0">
			<bounds x="343" y="129" width="62" height="32"/>
		</element>
		<element name="lamp186" ref="lamp_186_1" state="0">
			<bounds x="345" y="131" width="58" height="28"/>
		</element>
		<element name="lamp187" ref="lamp_187_1_border" state="0">
			<bounds x="343" y="159" width="62" height="32"/>
		</element>
		<element name="lamp187" ref="lamp_187_1" state="0">
			<bounds x="345" y="161" width="58" height="28"/>
		</element>
		<element name="lamp188" ref="lamp_188_1_border" state="0">
			<bounds x="343" y="189" width="62" height="32"/>
		</element>
		<element name="lamp188" ref="lamp_188_1" state="0">
			<bounds x="345" y="191" width="58" height="28"/>
		</element>
		<element name="lamp180" ref="lamp_180_1_border" state="0">
			<bounds x="403" y="159" width="62" height="32"/>
		</element>
		<element name="lamp180" ref="lamp_180_1" state="0">
			<bounds x="405" y="161" width="58" height="28"/>
		</element>
		<element name="lamp179" ref="lamp_179_1_border" state="0">
			<bounds x="403" y="189" width="62" height="32"/>
		</element>
		<element name="lamp179" ref="lamp_179_1" state="0">
			<bounds x="405" y="191" width="58" height="28"/>
		</element>
		<element name="lamp178" ref="lamp_178_1_border" state="0">
			<bounds x="403" y="219" width="62" height="32"/>
		</element>
		<element name="lamp178" ref="lamp_178_1" state="0">
			<bounds x="405" y="221" width="58" height="28"/>
		</element>
		<element name="lamp181" ref="lamp_181_1_border" state="0">
			<bounds x="403" y="129" width="62" height="32"/>
		</element>
		<element name="lamp181" ref="lamp_181_1" state="0">
			<bounds x="405" y="131" width="58" height="28"/>
		</element>
		<element name="lamp182" ref="lamp_182_1_border" state="0">
			<bounds x="403" y="99" width="62" height="32"/>
		</element>
		<element name="lamp182" ref="lamp_182_1" state="0">
			<bounds x="405" y="101" width="58" height="28"/>
		</element>
		<element name="lamp183" ref="lamp_183_1_border" state="0">
			<bounds x="403" y="69" width="62" height="32"/>
		</element>
		<element name="lamp183" ref="lamp_183_1" state="0">
			<bounds x="405" y="71" width="58" height="28"/>
		</element>
		<element name="lamp177" ref="lamp_177_1_border" state="0">
			<bounds x="463" y="219" width="62" height="32"/>
		</element>
		<element name="lamp177" ref="lamp_177_1" state="0">
			<bounds x="465" y="221" width="58" height="28"/>
		</element>
		<element name="lamp176" ref="lamp_176_1_border" state="0">
			<bounds x="463" y="189" width="62" height="32"/>
		</element>
		<element name="lamp176" ref="lamp_176_1" state="0">
			<bounds x="465" y="191" width="58" height="28"/>
		</element>
		<element name="lamp172" ref="lamp_172_1_border" state="0">
			<bounds x="463" y="159" width="62" height="32"/>
		</element>
		<element name="lamp172" ref="lamp_172_1" state="0">
			<bounds x="465" y="161" width="58" height="28"/>
		</element>
		<element name="lamp171" ref="lamp_171_1_border" state="0">
			<bounds x="463" y="129" width="62" height="32"/>
		</element>
		<element name="lamp171" ref="lamp_171_1" state="0">
			<bounds x="465" y="131" width="58" height="28"/>
		</element>
		<element name="lamp170" ref="lamp_170_1_border" state="0">
			<bounds x="463" y="99" width="62" height="32"/>
		</element>
		<element name="lamp170" ref="lamp_170_1" state="0">
			<bounds x="465" y="101" width="58" height="28"/>
		</element>
		<element name="lamp169" ref="lamp_169_1_border" state="0">
			<bounds x="463" y="69" width="62" height="32"/>
		</element>
		<element name="lamp169" ref="lamp_169_1" state="0">
			<bounds x="465" y="71" width="58" height="28"/>
		</element>
		<element name="lamp167" ref="lamp_167_1_border" state="0">
			<bounds x="523" y="99" width="62" height="32"/>
		</element>
		<element name="lamp167" ref="lamp_167_1" state="0">
			<bounds x="525" y="101" width="58" height="28"/>
		</element>
		<element name="lamp166" ref="lamp_166_1_border" state="0">
			<bounds x="523" y="129" width="62" height="32"/>
		</element>
		<element name="lamp166" ref="lamp_166_1" state="0">
			<bounds x="525" y="131" width="58" height="28"/>
		</element>
		<element name="lamp165" ref="lamp_165_1_border" state="0">
			<bounds x="523" y="159" width="62" height="32"/>
		</element>
		<element name="lamp165" ref="lamp_165_1" state="0">
			<bounds x="525" y="161" width="58" height="28"/>
		</element>
		<element name="lamp163" ref="lamp_163_1_border" state="0">
			<bounds x="523" y="219" width="62" height="32"/>
		</element>
		<element name="lamp163" ref="lamp_163_1" state="0">
			<bounds x="525" y="221" width="58" height="28"/>
		</element>
		<element name="lamp164" ref="lamp_164_1_border" state="0">
			<bounds x="523" y="189" width="62" height="32"/>
		</element>
		<element name="lamp164" ref="lamp_164_1" state="0">
			<bounds x="525" y="191" width="58" height="28"/>
		</element>
		<element name="lamp168" ref="lamp_168_1_border" state="0">
			<bounds x="523" y="69" width="62" height="32"/>
		</element>
		<element name="lamp168" ref="lamp_168_1" state="0">
			<bounds x="525" y="71" width="58" height="28"/>
		</element>
		<element name="lamp160" ref="lamp_160_1_border" state="0">
			<bounds x="583" y="159" width="62" height="32"/>
		</element>
		<element name="lamp160" ref="lamp_160_1" state="0">
			<bounds x="585" y="161" width="58" height="28"/>
		</element>
		<element name="lamp161" ref="lamp_161_1_border" state="0">
			<bounds x="583" y="189" width="62" height="32"/>
		</element>
		<element name="lamp161" ref="lamp_161_1" state="0">
			<bounds x="585" y="191" width="58" height="28"/>
		</element>
		<element name="lamp162" ref="lamp_162_1_border" state="0">
			<bounds x="583" y="219" width="62" height="32"/>
		</element>
		<element name="lamp162" ref="lamp_162_1" state="0">
			<bounds x="585" y="221" width="58" height="28"/>
		</element>
		<element name="lamp155" ref="lamp_155_1_border" state="0">
			<bounds x="583" y="99" width="62" height="32"/>
		</element>
		<element name="lamp155" ref="lamp_155_1" state="0">
			<bounds x="585" y="101" width="58" height="28"/>
		</element>
		<element name="lamp156" ref="lamp_156_1_border" state="0">
			<bounds x="583" y="129" width="62" height="32"/>
		</element>
		<element name="lamp156" ref="lamp_156_1" state="0">
			<bounds x="585" y="131" width="58" height="28"/>
		</element>
		<element name="lamp153" ref="lamp_153_1_border" state="0">
			<bounds x="583" y="69" width="62" height="32"/>
		</element>
		<element name="lamp153" ref="lamp_153_1" state="0">
			<bounds x="585" y="71" width="58" height="28"/>
		</element>
		<element name="lamp102" ref="lamp_102_1_border" state="0">
			<bounds x="345" y="311" width="52" height="32"/>
		</element>
		<element name="lamp102" ref="lamp_102_1" state="0">
			<bounds x="347" y="313" width="48" height="28"/>
		</element>
		<element name="lamp101" ref="lamp_101_1_border" state="0">
			<bounds x="345" y="340" width="52" height="32"/>
		</element>
		<element name="lamp101" ref="lamp_101_1" state="0">
			<bounds x="347" y="342" width="48" height="28"/>
		</element>
		<element name="lamp80" ref="lamp_80_1_border" state="0">
			<bounds x="345" y="369" width="52" height="32"/>
		</element>
		<element name="lamp80" ref="lamp_80_1" state="0">
			<bounds x="347" y="371" width="48" height="28"/>
		</element>
		<element name="lamp81" ref="lamp_81_1_border" state="0">
			<bounds x="345" y="397" width="52" height="32"/>
		</element>
		<element name="lamp81" ref="lamp_81_1" state="0">
			<bounds x="347" y="399" width="48" height="28"/>
		</element>
		<element name="lamp82" ref="lamp_82_1_border" state="0">
			<bounds x="394" y="397" width="52" height="32"/>
		</element>
		<element name="lamp82" ref="lamp_82_1" state="0">
			<bounds x="396" y="399" width="48" height="28"/>
		</element>
		<element name="lamp86" ref="lamp_86_1_border" state="0">
			<bounds x="443" y="397" width="52" height="32"/>
		</element>
		<element name="lamp86" ref="lamp_86_1" state="0">
			<bounds x="445" y="399" width="48" height="28"/>
		</element>
		<element name="lamp89" ref="lamp_89_1_border" state="0">
			<bounds x="590" y="397" width="52" height="32"/>
		</element>
		<element name="lamp89" ref="lamp_89_1" state="0">
			<bounds x="592" y="399" width="48" height="28"/>
		</element>
		<element name="lamp90" ref="lamp_90_1_border" state="0">
			<bounds x="590" y="368" width="52" height="32"/>
		</element>
		<element name="lamp90" ref="lamp_90_1" state="0">
			<bounds x="592" y="370" width="48" height="28"/>
		</element>
		<element name="lamp91" ref="lamp_91_1_border" state="0">
			<bounds x="590" y="340" width="52" height="32"/>
		</element>
		<element name="lamp91" ref="lamp_91_1" state="0">
			<bounds x="592" y="342" width="48" height="28"/>
		</element>
		<element name="lamp92" ref="lamp_92_1_border" state="0">
			<bounds x="590" y="311" width="52" height="32"/>
		</element>
		<element name="lamp92" ref="lamp_92_1" state="0">
			<bounds x="592" y="313" width="48" height="28"/>
		</element>
		<element name="lamp96" ref="lamp_96_1_border" state="0">
			<bounds x="590" y="282" width="52" height="32"/>
		</element>
		<element name="lamp96" ref="lamp_96_1" state="0">
			<bounds x="592" y="284" width="48" height="28"/>
		</element>
		<element name="lamp97" ref="lamp_97_1_border" state="0">
			<bounds x="590" y="253" width="52" height="32"/>
		</element>
		<element name="lamp97" ref="lamp_97_1" state="0">
			<bounds x="592" y="255" width="48" height="28"/>
		</element>
		<element name="lamp98" ref="lamp_98_1_border" state="0">
			<bounds x="541" y="253" width="52" height="32"/>
		</element>
		<element name="lamp98" ref="lamp_98_1" state="0">
			<bounds x="543" y="255" width="48" height="28"/>
		</element>
		<element name="lamp99" ref="lamp_99_1_border" state="0">
			<bounds x="492" y="253" width="52" height="32"/>
		</element>
		<element name="lamp99" ref="lamp_99_1" state="0">
			<bounds x="494" y="255" width="48" height="28"/>
		</element>
		<element name="lamp103" ref="lamp_103_1_border" state="0">
			<bounds x="345" y="282" width="52" height="32"/>
		</element>
		<element name="lamp103" ref="lamp_103_1" state="0">
			<bounds x="347" y="284" width="48" height="28"/>
		</element>
		<element name="lamp104" ref="lamp_104_1_border" state="0">
			<bounds x="345" y="253" width="52" height="32"/>
		</element>
		<element name="lamp104" ref="lamp_104_1" state="0">
			<bounds x="347" y="255" width="48" height="28"/>
		</element>
		<element name="lamp105" ref="lamp_105_1_border" state="0">
			<bounds x="394" y="253" width="52" height="32"/>
		</element>
		<element name="lamp105" ref="lamp_105_1" state="0">
			<bounds x="396" y="255" width="48" height="28"/>
		</element>
		<element name="lamp106" ref="lamp_106_1_border" state="0">
			<bounds x="443" y="253" width="52" height="32"/>
		</element>
		<element name="lamp106" ref="lamp_106_1" state="0">
			<bounds x="445" y="255" width="48" height="28"/>
		</element>
		<element name="lamp88" ref="lamp_88_1_border" state="0">
			<bounds x="541" y="397" width="52" height="32"/>
		</element>
		<element name="lamp88" ref="lamp_88_1" state="0">
			<bounds x="543" y="399" width="48" height="28"/>
		</element>
		<element name="lamp87" ref="lamp_87_1_border" state="0">
			<bounds x="492" y="397" width="52" height="32"/>
		</element>
		<element name="lamp87" ref="lamp_87_1" state="0">
			<bounds x="494" y="399" width="48" height="28"/>
		</element>
		<element name="lamp70" ref="lamp_70_1_border" state="0">
			<bounds x="508" y="375" width="22" height="22"/>
		</element>
		<element name="lamp70" ref="lamp_70_1" state="0">
			<bounds x="510" y="377" width="18" height="18"/>
		</element>
		<element name="lamp71" ref="lamp_71_1_border" state="0">
			<bounds x="483" y="375" width="22" height="22"/>
		</element>
		<element name="lamp71" ref="lamp_71_1" state="0">
			<bounds x="485" y="377" width="18" height="18"/>
		</element>
		<element name="lamp72" ref="lamp_72_1_border" state="0">
			<bounds x="458" y="375" width="22" height="22"/>
		</element>
		<element name="lamp72" ref="lamp_72_1" state="0">
			<bounds x="460" y="377" width="18" height="18"/>
		</element>
		<element name="lamp78" ref="lamp_78_1_border" state="0">
			<bounds x="284" y="314" width="62" height="32"/>
		</element>
		<element name="lamp78" ref="lamp_78_1" state="0">
			<bounds x="286" y="316" width="58" height="28"/>
		</element>
		<element name="lamp77" ref="lamp_77_1_border" state="0">
			<bounds x="284" y="283" width="62" height="32"/>
		</element>
		<element name="lamp77" ref="lamp_77_1" state="0">
			<bounds x="286" y="285" width="58" height="28"/>
		</element>
		<element name="lamp74" ref="lamp_74_1_border" state="0">
			<bounds x="284" y="252" width="62" height="32"/>
		</element>
		<element name="lamp74" ref="lamp_74_1" state="0">
			<bounds x="286" y="254" width="58" height="28"/>
		</element>
		<element name="lamp44" ref="lamp_44_1_border" state="0">
			<bounds x="438" y="594" width="42" height="37"/>
		</element>
		<element name="lamp44" ref="lamp_44_1" state="0">
			<bounds x="440" y="596" width="38" height="33"/>
		</element>
		<element name="lamp149" ref="lamp_149_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="370" y="45" width="32" height="17"/>
		</element>
		<element name="lamp149" ref="lamp_149_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="372" y="47" width="28" height="13"/>
		</element>
		<element name="lamp141" ref="lamp_141_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="581" y="3" width="42" height="42"/>
		</element>
		<element name="lamp141" ref="lamp_141_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="583" y="5" width="38" height="38"/>
		</element>
		<element name="lamp151" ref="lamp_151_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="257" y="48" width="32" height="17"/>
		</element>
		<element name="lamp151" ref="lamp_151_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="259" y="50" width="28" height="13"/>
		</element>
		<element name="lamp150" ref="lamp_150_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="312" y="47" width="32" height="17"/>
		</element>
		<element name="lamp150" ref="lamp_150_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="314" y="49" width="28" height="13"/>
		</element>
		<element name="lamp135" ref="lamp_135_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="252" y="3" width="42" height="42"/>
		</element>
		<element name="lamp135" ref="lamp_135_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="254" y="5" width="38" height="38"/>
		</element>
		<element name="lamp136" ref="lamp_136_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="308" y="3" width="42" height="42"/>
		</element>
		<element name="lamp136" ref="lamp_136_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="310" y="5" width="38" height="38"/>
		</element>
		<element name="lamp137" ref="lamp_137_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="364" y="3" width="42" height="42"/>
		</element>
		<element name="lamp137" ref="lamp_137_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="366" y="5" width="38" height="38"/>
		</element>
		<element name="lamp138" ref="lamp_138_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="421" y="3" width="42" height="42"/>
		</element>
		<element name="lamp138" ref="lamp_138_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="423" y="5" width="38" height="38"/>
		</element>
		<element name="lamp139" ref="lamp_139_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="472" y="3" width="42" height="42"/>
		</element>
		<element name="lamp139" ref="lamp_139_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="474" y="5" width="38" height="38"/>
		</element>
		<element name="lamp140" ref="lamp_140_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="526" y="3" width="42" height="42"/>
		</element>
		<element name="lamp140" ref="lamp_140_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="528" y="5" width="38" height="38"/>
		</element>
		<element name="lamp144" ref="lamp_144_1_border" state="0">
			<bounds x="640" y="46" width="32" height="17"/>
		</element>
		<element name="lamp144" ref="lamp_144_1" state="0">
			<bounds x="642" y="48" width="28" height="13"/>
		</element>
		<element name="lamp145" ref="lamp_145_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="584" y="47" width="32" height="17"/>
		</element>
		<element name="lamp145" ref="lamp_145_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="586" y="49" width="28" height="13"/>
		</element>
		<element name="lamp146" ref="lamp_146_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="526" y="47" width="32" height="17"/>
		</element>
		<element name="lamp146" ref="lamp_146_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="528" y="49" width="28" height="13"/>
		</element>
		<element name="lamp147" ref="lamp_147_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="476" y="47" width="32" height="17"/>
		</element>
		<element name="lamp147" ref="lamp_147_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="478" y="49" width="28" height="13"/>
		</element>
		<element name="lamp148" ref="lamp_148_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="426" y="45" width="32" height="17"/>
		</element>
		<element name="lamp148" ref="lamp_148_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="428" y="47" width="28" height="13"/>
		</element>
		<element name="lamp122" ref="lamp_122_1_border" state="0">
			<bounds x="633" y="4" width="47" height="42"/>
		</element>
		<element name="lamp122" ref="lamp_122_1" state="0">
			<bounds x="635" y="6" width="43" height="38"/>
		</element>
		<element name="lamp118" ref="lamp_118_1_border" state="0">
			<bounds x="72" y="7" width="52" height="32"/>
		</element>
		<element name="lamp118" ref="lamp_118_1" state="0">
			<bounds x="74" y="9" width="48" height="28"/>
		</element>
		<element name="lamp117" ref="lamp_117_1_border" state="0">
			<bounds x="124" y="7" width="52" height="32"/>
		</element>
		<element name="lamp117" ref="lamp_117_1" state="0">
			<bounds x="126" y="9" width="48" height="28"/>
		</element>
		<element name="lamp116" ref="lamp_116_1_border" state="0">
			<bounds x="176" y="8" width="52" height="32"/>
		</element>
		<element name="lamp116" ref="lamp_116_1" state="0">
			<bounds x="178" y="10" width="48" height="28"/>
		</element>
		<element name="lamp39" ref="lamp_39_1_border" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="818" y="5" width="42" height="42"/>
		</element>
		<element name="lamp39" ref="lamp_39_1" state="0" inputtag="IN-COIN" inputmask="0x01">
			<bounds x="820" y="7" width="38" height="38"/>
		</element>
		<element name="lamp84" ref="lamp_84_1_border" state="0">
			<bounds x="19" y="116" width="92" height="52"/>
		</element>
		<element name="lamp84" ref="lamp_84_1" state="0">
			<bounds x="21" y="118" width="88" height="48"/>
		</element>
		<element name="lamp85" ref="lamp_85_1_border" state="0">
			<bounds x="19" y="116" width="92" height="52"/>
		</element>
		<element name="lamp85" ref="lamp_85_1" state="0">
			<bounds x="21" y="118" width="88" height="48"/>
		</element>
		<element name="lamp107" ref="lamp_107_1_border" state="0">
			<bounds x="186" y="115" width="62" height="52"/>
		</element>
		<element name="lamp107" ref="lamp_107_1" state="0">
			<bounds x="188" y="117" width="58" height="48"/>
		</element>
		<element name="lamp108" ref="lamp_108_1_border" state="0">
			<bounds x="186" y="115" width="62" height="52"/>
		</element>
		<element name="lamp108" ref="lamp_108_1" state="0">
			<bounds x="188" y="117" width="58" height="48"/>
		</element>
		<element name="lamp109" ref="lamp_109_1_border" state="0">
			<bounds x="117" y="116" width="62" height="52"/>
		</element>
		<element name="lamp109" ref="lamp_109_1" state="0">
			<bounds x="119" y="118" width="58" height="48"/>
		</element>
		<element name="lamp83" ref="lamp_83_1_border" state="0">
			<bounds x="117" y="116" width="62" height="52"/>
		</element>
		<element name="lamp83" ref="lamp_83_1" state="0">
			<bounds x="119" y="118" width="58" height="48"/>
		</element>
		<element name="lamp100" ref="lamp_100_1_border" state="0">
			<bounds x="90" y="247" width="72" height="22"/>
		</element>
		<element name="lamp100" ref="lamp_100_1" state="0">
			<bounds x="92" y="249" width="68" height="18"/>
		</element>
		<element name="lamp20" ref="lamp_20_1_border" state="0">
			<bounds x="123" y="399" width="62" height="32"/>
		</element>
		<element name="lamp20" ref="lamp_20_1" state="0">
			<bounds x="125" y="401" width="58" height="28"/>
		</element>
		<element name="lamp19" ref="lamp_19_1_border" state="0">
			<bounds x="63" y="399" width="62" height="32"/>
		</element>
		<element name="lamp19" ref="lamp_19_1" state="0">
			<bounds x="65" y="401" width="58" height="28"/>
		</element>
		<element name="lamp21" ref="lamp_21_1_border" state="0">
			<bounds x="123" y="429" width="62" height="32"/>
		</element>
		<element name="lamp21" ref="lamp_21_1" state="0">
			<bounds x="125" y="431" width="58" height="28"/>
		</element>
		<element name="lamp22" ref="lamp_22_1_border" state="0">
			<bounds x="63" y="429" width="62" height="32"/>
		</element>
		<element name="lamp22" ref="lamp_22_1" state="0">
			<bounds x="65" y="431" width="58" height="28"/>
		</element>
		<element name="lamp23" ref="lamp_23_1_border" state="0">
			<bounds x="63" y="459" width="62" height="32"/>
		</element>
		<element name="lamp23" ref="lamp_23_1" state="0">
			<bounds x="65" y="461" width="58" height="28"/>
		</element>
		<element name="lamp24" ref="lamp_24_1_border" state="0">
			<bounds x="123" y="459" width="62" height="32"/>
		</element>
		<element name="lamp24" ref="lamp_24_1" state="0">
			<bounds x="125" y="461" width="58" height="28"/>
		</element>
		<element name="lamp29" ref="lamp_29_1_border" state="0">
			<bounds x="123" y="490" width="62" height="32"/>
		</element>
		<element name="lamp29" ref="lamp_29_1" state="0">
			<bounds x="125" y="492" width="58" height="28"/>
		</element>
		<element name="lamp38" ref="lamp_38_1_border" state="0">
			<bounds x="63" y="489" width="62" height="32"/>
		</element>
		<element name="lamp38" ref="lamp_38_1" state="0">
			<bounds x="65" y="491" width="58" height="28"/>
		</element>
		<element name="lamp219" ref="lamp_219_1_border" state="0">
			<bounds x="698" y="98" width="52" height="32"/>
		</element>
		<element name="lamp219" ref="lamp_219_1" state="0">
			<bounds x="700" y="100" width="48" height="28"/>
		</element>
		<element name="lamp220" ref="lamp_220_1_border" state="0">
			<bounds x="694" y="57" width="62" height="42"/>
		</element>
		<element name="lamp220" ref="lamp_220_1" state="0">
			<bounds x="696" y="59" width="58" height="38"/>
		</element>
		<element name="lamp201" ref="lamp_201_1_border" state="0">
			<bounds x="698" y="539" width="52" height="32"/>
		</element>
		<element name="lamp201" ref="lamp_201_1" state="0">
			<bounds x="700" y="541" width="48" height="28"/>
		</element>
		<element name="lamp202" ref="lamp_202_1_border" state="0">
			<bounds x="698" y="506" width="52" height="32"/>
		</element>
		<element name="lamp202" ref="lamp_202_1" state="0">
			<bounds x="700" y="508" width="48" height="28"/>
		</element>
		<element name="lamp203" ref="lamp_203_1_border" state="0">
			<bounds x="698" y="472" width="52" height="32"/>
		</element>
		<element name="lamp203" ref="lamp_203_1" state="0">
			<bounds x="700" y="474" width="48" height="28"/>
		</element>
		<element name="lamp204" ref="lamp_204_1_border" state="0">
			<bounds x="698" y="438" width="52" height="32"/>
		</element>
		<element name="lamp204" ref="lamp_204_1" state="0">
			<bounds x="700" y="440" width="48" height="28"/>
		</element>
		<element name="lamp205" ref="lamp_205_1_border" state="0">
			<bounds x="698" y="404" width="52" height="32"/>
		</element>
		<element name="lamp205" ref="lamp_205_1" state="0">
			<bounds x="700" y="406" width="48" height="28"/>
		</element>
		<element name="lamp208" ref="lamp_208_1_border" state="0">
			<bounds x="698" y="370" width="52" height="32"/>
		</element>
		<element name="lamp208" ref="lamp_208_1" state="0">
			<bounds x="700" y="372" width="48" height="28"/>
		</element>
		<element name="lamp215" ref="lamp_215_1_border" state="0">
			<bounds x="698" y="166" width="52" height="32"/>
		</element>
		<element name="lamp215" ref="lamp_215_1" state="0">
			<bounds x="700" y="168" width="48" height="28"/>
		</element>
		<element name="lamp216" ref="lamp_216_1_border" state="0">
			<bounds x="698" y="132" width="52" height="32"/>
		</element>
		<element name="lamp216" ref="lamp_216_1" state="0">
			<bounds x="700" y="134" width="48" height="28"/>
		</element>
		<element name="lamp209" ref="lamp_209_1_border" state="0">
			<bounds x="698" y="336" width="52" height="32"/>
		</element>
		<element name="lamp209" ref="lamp_209_1" state="0">
			<bounds x="700" y="338" width="48" height="28"/>
		</element>
		<element name="lamp210" ref="lamp_210_1_border" state="0">
			<bounds x="698" y="302" width="52" height="32"/>
		</element>
		<element name="lamp210" ref="lamp_210_1" state="0">
			<bounds x="700" y="304" width="48" height="28"/>
		</element>
		<element name="lamp211" ref="lamp_211_1_border" state="0">
			<bounds x="698" y="268" width="52" height="32"/>
		</element>
		<element name="lamp211" ref="lamp_211_1" state="0">
			<bounds x="700" y="270" width="48" height="28"/>
		</element>
		<element name="lamp213" ref="lamp_213_1_border" state="0">
			<bounds x="698" y="200" width="52" height="32"/>
		</element>
		<element name="lamp213" ref="lamp_213_1" state="0">
			<bounds x="700" y="202" width="48" height="28"/>
		</element>
		<element name="lamp212" ref="lamp_212_1_border" state="0">
			<bounds x="698" y="234" width="52" height="32"/>
		</element>
		<element name="lamp212" ref="lamp_212_1" state="0">
			<bounds x="700" y="236" width="48" height="28"/>
		</element>
		<element name="lamp5" ref="colour_button_174_border" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="589" y="636" width="75" height="27"/>
		</element>
		<element name="lamp5" ref="colour_button_174" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="591" y="638" width="71" height="23"/>
		</element>
		<element name="lamp7" ref="colour_button_175_border" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="682" y="635" width="75" height="27"/>
		</element>
		<element name="lamp7" ref="colour_button_175" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="684" y="637" width="71" height="23"/>
		</element>
		<element name="lamp4" ref="colour_button_176_border" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="177" y="638" width="75" height="27"/>
		</element>
		<element name="lamp4" ref="colour_button_176" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="179" y="640" width="71" height="23"/>
		</element>
		<element name="lamp0" ref="colour_button_177_border" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="257" y="638" width="75" height="27"/>
		</element>
		<element name="lamp0" ref="colour_button_177" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="259" y="640" width="71" height="23"/>
		</element>
		<element name="lamp1" ref="colour_button_178_border" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="339" y="637" width="75" height="27"/>
		</element>
		<element name="lamp1" ref="colour_button_178" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="341" y="639" width="71" height="23"/>
		</element>
		<element name="lamp2" ref="colour_button_179_border" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="420" y="637" width="75" height="27"/>
		</element>
		<element name="lamp2" ref="colour_button_179" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="422" y="639" width="71" height="23"/>
		</element>
		<element name="lamp3" ref="colour_button_180_border" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="501" y="636" width="75" height="27"/>
		</element>
		<element name="lamp3" ref="colour_button_180" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="503" y="638" width="71" height="23"/>
		</element>
		<element name="lamp76" ref="colour_button_181_border" state="0" inputtag="IN-9" inputmask="0x01">
			<bounds x="549" y="291" width="32" height="32"/>
		</element>
		<element name="lamp76" ref="colour_button_181" state="0" inputtag="IN-9" inputmask="0x01">
			<bounds x="551" y="293" width="28" height="28"/>
		</element>
		<element name="lamp199" ref="colour_button_182_border" state="0" inputtag="IN-8" inputmask="0x02">
			<bounds x="406" y="291" width="32" height="32"/>
		</element>
		<element name="lamp199" ref="colour_button_182" state="0" inputtag="IN-8" inputmask="0x02">
			<bounds x="408" y="293" width="28" height="28"/>
		</element>
		<element name="lamp75" ref="colour_button_183_border" state="0" inputtag="IN-8" inputmask="0x10">
			<bounds x="548" y="328" width="32" height="32"/>
		</element>
		<element name="lamp75" ref="colour_button_183" state="0" inputtag="IN-8" inputmask="0x10">
			<bounds x="550" y="330" width="28" height="28"/>
		</element>
		<element name="lamp73" ref="colour_button_184_border" state="0" inputtag="IN-8" inputmask="0x08">
			<bounds x="455" y="349" width="75" height="27"/>
		</element>
		<element name="lamp73" ref="colour_button_184" state="0" inputtag="IN-8" inputmask="0x08">
			<bounds x="457" y="351" width="71" height="23"/>
		</element>
		<element name="lamp200" ref="colour_button_185_border" state="0" inputtag="IN-8" inputmask="0x04">
			<bounds x="407" y="330" width="32" height="32"/>
		</element>
		<element name="lamp200" ref="colour_button_185" state="0" inputtag="IN-8" inputmask="0x04">
			<bounds x="409" y="332" width="28" height="28"/>
		</element>
		<element name="lamp93" ref="colour_button_186_border" state="0" inputtag="IN-9" inputmask="0x02">
			<bounds x="90" y="307" width="75" height="27"/>
		</element>
		<element name="lamp93" ref="colour_button_186" state="0" inputtag="IN-9" inputmask="0x02">
			<bounds x="92" y="309" width="71" height="23"/>
		</element>
		<element name="lamp152" ref="colour_button_187_border" state="0" inputtag="IN-8" inputmask="0x01">
			<bounds x="693" y="572" width="62" height="48"/>
		</element>
		<element name="lamp152" ref="colour_button_187" state="0" inputtag="IN-8" inputmask="0x01">
			<bounds x="695" y="574" width="58" height="44"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="126" y="272" width="24" height="32"/>
		</element>
		<element name="digit2" ref="led_digit_red">
			<bounds x="126" y="272" width="24" height="32"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="126" y="272" width="24" height="32"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="102" y="272" width="24" height="32"/>
		</element>
		<element name="digit0" ref="led_digit_red">
			<bounds x="102" y="272" width="24" height="32"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="102" y="272" width="24" height="32"/>
			<color alpha="0.1"/>
		</element>
		<element ref="vfd0_background">
			<bounds x="343" y="429" width="227" height="20"/>
		</element>
		<element name="vfd0" ref="vfd0" state="0">
			<bounds x="343" y="429" width="14" height="20"/>
		</element>
		<element name="vfd1" ref="vfd0" state="0">
			<bounds x="357" y="429" width="14" height="20"/>
		</element>
		<element name="vfd2" ref="vfd0" state="0">
			<bounds x="371" y="429" width="14" height="20"/>
		</element>
		<element name="vfd3" ref="vfd0" state="0">
			<bounds x="385" y="429" width="14" height="20"/>
		</element>
		<element name="vfd4" ref="vfd0" state="0">
			<bounds x="399" y="429" width="14" height="20"/>
		</element>
		<element name="vfd5" ref="vfd0" state="0">
			<bounds x="413" y="429" width="14" height="20"/>
		</element>
		<element name="vfd6" ref="vfd0" state="0">
			<bounds x="427" y="429" width="14" height="20"/>
		</element>
		<element name="vfd7" ref="vfd0" state="0">
			<bounds x="441" y="429" width="14" height="20"/>
		</element>
		<element name="vfd8" ref="vfd0" state="0">
			<bounds x="455" y="429" width="14" height="20"/>
		</element>
		<element name="vfd9" ref="vfd0" state="0">
			<bounds x="469" y="429" width="14" height="20"/>
		</element>
		<element name="vfd10" ref="vfd0" state="0">
			<bounds x="483" y="429" width="14" height="20"/>
		</element>
		<element name="vfd11" ref="vfd0" state="0">
			<bounds x="497" y="429" width="14" height="20"/>
		</element>
		<element name="vfd12" ref="vfd0" state="0">
			<bounds x="511" y="429" width="14" height="20"/>
		</element>
		<element name="vfd13" ref="vfd0" state="0">
			<bounds x="525" y="429" width="14" height="20"/>
		</element>
		<element name="vfd14" ref="vfd0" state="0">
			<bounds x="539" y="429" width="14" height="20"/>
		</element>
		<element name="vfd15" ref="vfd0" state="0">
			<bounds x="553" y="429" width="14" height="20"/>
		</element>
		<element name="label97" ref="label_97">
			<bounds x="405" y="360" width="31" height="30"/>
		</element>
		<element name="label98" ref="label_98">
			<bounds x="546" y="361" width="32" height="30"/>
		</element>
		<element name="label138" ref="label_138">
			<bounds x="90" y="525" width="71" height="30"/>
		</element>
		<element name="label147" ref="label_147">
			<bounds x="14" y="12" width="35" height="30"/>
		</element>
	</view>

	<view name="MFME2MAME Debug">
		<element ref="debug_backdrop_colour">
			<bounds x="0" y="0" width="1920" height="1080"/>
		</element>
		<element name="lamp0" ref="debug_lamp_button" state="0">
			<bounds x="32" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_0" ref="debug_lamp_label_0">
			<bounds x="47" y="47" width="30" height="30"/>
		</element>
		<element name="lamp1" ref="debug_lamp_button" state="0">
			<bounds x="96" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_1" ref="debug_lamp_label_1">
			<bounds x="111" y="47" width="30" height="30"/>
		</element>
		<element name="lamp2" ref="debug_lamp_button" state="0">
			<bounds x="160" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_2" ref="debug_lamp_label_2">
			<bounds x="175" y="47" width="30" height="30"/>
		</element>
		<element name="lamp3" ref="debug_lamp_button" state="0">
			<bounds x="224" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_3" ref="debug_lamp_label_3">
			<bounds x="239" y="47" width="30" height="30"/>
		</element>
		<element name="lamp4" ref="debug_lamp_button" state="0">
			<bounds x="288" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_4" ref="debug_lamp_label_4">
			<bounds x="303" y="47" width="30" height="30"/>
		</element>
		<element name="lamp5" ref="debug_lamp_button" state="0">
			<bounds x="352" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_5" ref="debug_lamp_label_5">
			<bounds x="367" y="47" width="30" height="30"/>
		</element>
		<element name="lamp6" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_6" ref="debug_lamp_label_6">
			<bounds x="431" y="47" width="30" height="30"/>
		</element>
		<element name="lamp7" ref="debug_lamp_button" state="0">
			<bounds x="480" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_7" ref="debug_lamp_label_7">
			<bounds x="495" y="47" width="30" height="30"/>
		</element>
		<element name="lamp8" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_8" ref="debug_lamp_label_8">
			<bounds x="559" y="47" width="30" height="30"/>
		</element>
		<element name="lamp9" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_9" ref="debug_lamp_label_9">
			<bounds x="623" y="47" width="30" height="30"/>
		</element>
		<element name="lamp10" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_10" ref="debug_lamp_label_10">
			<bounds x="687" y="47" width="30" height="30"/>
		</element>
		<element name="lamp11" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_11" ref="debug_lamp_label_11">
			<bounds x="751" y="47" width="30" height="30"/>
		</element>
		<element name="lamp12" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_12" ref="debug_lamp_label_12">
			<bounds x="815" y="47" width="30" height="30"/>
		</element>
		<element name="lamp13" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_13" ref="debug_lamp_label_13">
			<bounds x="879" y="47" width="30" height="30"/>
		</element>
		<element name="lamp14" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_14" ref="debug_lamp_label_14">
			<bounds x="943" y="47" width="30" height="30"/>
		</element>
		<element name="lamp15" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_15" ref="debug_lamp_label_15">
			<bounds x="1007" y="47" width="30" height="30"/>
		</element>
		<element name="lamp16" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_16" ref="debug_lamp_label_16">
			<bounds x="47" y="111" width="30" height="30"/>
		</element>
		<element name="lamp17" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_17" ref="debug_lamp_label_17">
			<bounds x="111" y="111" width="30" height="30"/>
		</element>
		<element name="lamp18" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_18" ref="debug_lamp_label_18">
			<bounds x="175" y="111" width="30" height="30"/>
		</element>
		<element name="lamp19" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_19" ref="debug_lamp_label_19">
			<bounds x="239" y="111" width="30" height="30"/>
		</element>
		<element name="lamp20" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_20" ref="debug_lamp_label_20">
			<bounds x="303" y="111" width="30" height="30"/>
		</element>
		<element name="lamp21" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_21" ref="debug_lamp_label_21">
			<bounds x="367" y="111" width="30" height="30"/>
		</element>
		<element name="lamp22" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_22" ref="debug_lamp_label_22">
			<bounds x="431" y="111" width="30" height="30"/>
		</element>
		<element name="lamp23" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_23" ref="debug_lamp_label_23">
			<bounds x="495" y="111" width="30" height="30"/>
		</element>
		<element name="lamp24" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_24" ref="debug_lamp_label_24">
			<bounds x="559" y="111" width="30" height="30"/>
		</element>
		<element name="lamp25" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_25" ref="debug_lamp_label_25">
			<bounds x="623" y="111" width="30" height="30"/>
		</element>
		<element name="lamp26" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_26" ref="debug_lamp_label_26">
			<bounds x="687" y="111" width="30" height="30"/>
		</element>
		<element name="lamp27" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_27" ref="debug_lamp_label_27">
			<bounds x="751" y="111" width="30" height="30"/>
		</element>
		<element name="lamp28" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_28" ref="debug_lamp_label_28">
			<bounds x="815" y="111" width="30" height="30"/>
		</element>
		<element name="lamp29" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_29" ref="debug_lamp_label_29">
			<bounds x="879" y="111" width="30" height="30"/>
		</element>
		<element name="lamp30" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_30" ref="debug_lamp_label_30">
			<bounds x="943" y="111" width="30" height="30"/>
		</element>
		<element name="lamp31" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_31" ref="debug_lamp_label_31">
			<bounds x="1007" y="111" width="30" height="30"/>
		</element>
		<element name="lamp32" ref="debug_lamp_reel" state="0">
			<bounds x="32" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_32" ref="debug_lamp_label_32">
			<bounds x="47" y="175" width="30" height="30"/>
		</element>
		<element name="lamp33" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_33" ref="debug_lamp_label_33">
			<bounds x="111" y="175" width="30" height="30"/>
		</element>
		<element name="lamp34" ref="debug_lamp_reel" state="0">
			<bounds x="160" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_34" ref="debug_lamp_label_34">
			<bounds x="175" y="175" width="30" height="30"/>
		</element>
		<element name="lamp35" ref="debug_lamp_reel" state="0">
			<bounds x="224" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_35" ref="debug_lamp_label_35">
			<bounds x="239" y="175" width="30" height="30"/>
		</element>
		<element name="lamp36" ref="debug_lamp_reel" state="0">
			<bounds x="288" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_36" ref="debug_lamp_label_36">
			<bounds x="303" y="175" width="30" height="30"/>
		</element>
		<element name="lamp37" ref="debug_lamp_reel" state="0">
			<bounds x="352" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_37" ref="debug_lamp_label_37">
			<bounds x="367" y="175" width="30" height="30"/>
		</element>
		<element name="lamp38" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_38" ref="debug_lamp_label_38">
			<bounds x="431" y="175" width="30" height="30"/>
		</element>
		<element name="lamp39" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_39" ref="debug_lamp_label_39">
			<bounds x="495" y="175" width="30" height="30"/>
		</element>
		<element name="lamp40" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_40" ref="debug_lamp_label_40">
			<bounds x="559" y="175" width="30" height="30"/>
		</element>
		<element name="lamp41" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_41" ref="debug_lamp_label_41">
			<bounds x="623" y="175" width="30" height="30"/>
		</element>
		<element name="lamp42" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_42" ref="debug_lamp_label_42">
			<bounds x="687" y="175" width="30" height="30"/>
		</element>
		<element name="lamp43" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_43" ref="debug_lamp_label_43">
			<bounds x="751" y="175" width="30" height="30"/>
		</element>
		<element name="lamp44" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_44" ref="debug_lamp_label_44">
			<bounds x="815" y="175" width="30" height="30"/>
		</element>
		<element name="lamp45" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_45" ref="debug_lamp_label_45">
			<bounds x="879" y="175" width="30" height="30"/>
		</element>
		<element name="lamp46" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_46" ref="debug_lamp_label_46">
			<bounds x="943" y="175" width="30" height="30"/>
		</element>
		<element name="lamp47" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_47" ref="debug_lamp_label_47">
			<bounds x="1007" y="175" width="30" height="30"/>
		</element>
		<element name="lamp48" ref="debug_lamp_reel" state="0">
			<bounds x="32" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_48" ref="debug_lamp_label_48">
			<bounds x="47" y="239" width="30" height="30"/>
		</element>
		<element name="lamp49" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_49" ref="debug_lamp_label_49">
			<bounds x="111" y="239" width="30" height="30"/>
		</element>
		<element name="lamp50" ref="debug_lamp_reel" state="0">
			<bounds x="160" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_50" ref="debug_lamp_label_50">
			<bounds x="175" y="239" width="30" height="30"/>
		</element>
		<element name="lamp51" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_51" ref="debug_lamp_label_51">
			<bounds x="239" y="239" width="30" height="30"/>
		</element>
		<element name="lamp52" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_52" ref="debug_lamp_label_52">
			<bounds x="303" y="239" width="30" height="30"/>
		</element>
		<element name="lamp53" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_53" ref="debug_lamp_label_53">
			<bounds x="367" y="239" width="30" height="30"/>
		</element>
		<element name="lamp54" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_54" ref="debug_lamp_label_54">
			<bounds x="431" y="239" width="30" height="30"/>
		</element>
		<element name="lamp55" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_55" ref="debug_lamp_label_55">
			<bounds x="495" y="239" width="30" height="30"/>
		</element>
		<element name="lamp56" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_56" ref="debug_lamp_label_56">
			<bounds x="559" y="239" width="30" height="30"/>
		</element>
		<element name="lamp57" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_57" ref="debug_lamp_label_57">
			<bounds x="623" y="239" width="30" height="30"/>
		</element>
		<element name="lamp58" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_58" ref="debug_lamp_label_58">
			<bounds x="687" y="239" width="30" height="30"/>
		</element>
		<element name="lamp59" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_59" ref="debug_lamp_label_59">
			<bounds x="751" y="239" width="30" height="30"/>
		</element>
		<element name="lamp60" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_60" ref="debug_lamp_label_60">
			<bounds x="815" y="239" width="30" height="30"/>
		</element>
		<element name="lamp61" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_61" ref="debug_lamp_label_61">
			<bounds x="879" y="239" width="30" height="30"/>
		</element>
		<element name="lamp62" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_62" ref="debug_lamp_label_62">
			<bounds x="943" y="239" width="30" height="30"/>
		</element>
		<element name="lamp63" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_63" ref="debug_lamp_label_63">
			<bounds x="1007" y="239" width="30" height="30"/>
		</element>
		<element name="lamp64" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_64" ref="debug_lamp_label_64">
			<bounds x="47" y="303" width="30" height="30"/>
		</element>
		<element name="lamp65" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_65" ref="debug_lamp_label_65">
			<bounds x="111" y="303" width="30" height="30"/>
		</element>
		<element name="lamp66" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_66" ref="debug_lamp_label_66">
			<bounds x="175" y="303" width="30" height="30"/>
		</element>
		<element name="lamp67" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_67" ref="debug_lamp_label_67">
			<bounds x="239" y="303" width="30" height="30"/>
		</element>
		<element name="lamp68" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_68" ref="debug_lamp_label_68">
			<bounds x="303" y="303" width="30" height="30"/>
		</element>
		<element name="lamp69" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_69" ref="debug_lamp_label_69">
			<bounds x="367" y="303" width="30" height="30"/>
		</element>
		<element name="lamp70" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_70" ref="debug_lamp_label_70">
			<bounds x="431" y="303" width="30" height="30"/>
		</element>
		<element name="lamp71" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_71" ref="debug_lamp_label_71">
			<bounds x="495" y="303" width="30" height="30"/>
		</element>
		<element name="lamp72" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_72" ref="debug_lamp_label_72">
			<bounds x="559" y="303" width="30" height="30"/>
		</element>
		<element name="lamp73" ref="debug_lamp_button" state="0">
			<bounds x="608" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_73" ref="debug_lamp_label_73">
			<bounds x="623" y="303" width="30" height="30"/>
		</element>
		<element name="lamp74" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_74" ref="debug_lamp_label_74">
			<bounds x="687" y="303" width="30" height="30"/>
		</element>
		<element name="lamp75" ref="debug_lamp_button" state="0">
			<bounds x="736" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_75" ref="debug_lamp_label_75">
			<bounds x="751" y="303" width="30" height="30"/>
		</element>
		<element name="lamp76" ref="debug_lamp_button" state="0">
			<bounds x="800" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_76" ref="debug_lamp_label_76">
			<bounds x="815" y="303" width="30" height="30"/>
		</element>
		<element name="lamp77" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_77" ref="debug_lamp_label_77">
			<bounds x="879" y="303" width="30" height="30"/>
		</element>
		<element name="lamp78" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_78" ref="debug_lamp_label_78">
			<bounds x="943" y="303" width="30" height="30"/>
		</element>
		<element name="lamp79" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_79" ref="debug_lamp_label_79">
			<bounds x="1007" y="303" width="30" height="30"/>
		</element>
		<element name="lamp80" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_80" ref="debug_lamp_label_80">
			<bounds x="47" y="367" width="30" height="30"/>
		</element>
		<element name="lamp81" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_81" ref="debug_lamp_label_81">
			<bounds x="111" y="367" width="30" height="30"/>
		</element>
		<element name="lamp82" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_82" ref="debug_lamp_label_82">
			<bounds x="175" y="367" width="30" height="30"/>
		</element>
		<element name="lamp83" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_83" ref="debug_lamp_label_83">
			<bounds x="239" y="367" width="30" height="30"/>
		</element>
		<element name="lamp84" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_84" ref="debug_lamp_label_84">
			<bounds x="303" y="367" width="30" height="30"/>
		</element>
		<element name="lamp85" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_85" ref="debug_lamp_label_85">
			<bounds x="367" y="367" width="30" height="30"/>
		</element>
		<element name="lamp86" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_86" ref="debug_lamp_label_86">
			<bounds x="431" y="367" width="30" height="30"/>
		</element>
		<element name="lamp87" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_87" ref="debug_lamp_label_87">
			<bounds x="495" y="367" width="30" height="30"/>
		</element>
		<element name="lamp88" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_88" ref="debug_lamp_label_88">
			<bounds x="559" y="367" width="30" height="30"/>
		</element>
		<element name="lamp89" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_89" ref="debug_lamp_label_89">
			<bounds x="623" y="367" width="30" height="30"/>
		</element>
		<element name="lamp90" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_90" ref="debug_lamp_label_90">
			<bounds x="687" y="367" width="30" height="30"/>
		</element>
		<element name="lamp91" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_91" ref="debug_lamp_label_91">
			<bounds x="751" y="367" width="30" height="30"/>
		</element>
		<element name="lamp92" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_92" ref="debug_lamp_label_92">
			<bounds x="815" y="367" width="30" height="30"/>
		</element>
		<element name="lamp93" ref="debug_lamp_button" state="0">
			<bounds x="864" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_93" ref="debug_lamp_label_93">
			<bounds x="879" y="367" width="30" height="30"/>
		</element>
		<element name="lamp94" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_94" ref="debug_lamp_label_94">
			<bounds x="943" y="367" width="30" height="30"/>
		</element>
		<element name="lamp95" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_95" ref="debug_lamp_label_95">
			<bounds x="1007" y="367" width="30" height="30"/>
		</element>
		<element name="lamp96" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_96" ref="debug_lamp_label_96">
			<bounds x="47" y="431" width="30" height="30"/>
		</element>
		<element name="lamp97" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_97" ref="debug_lamp_label_97">
			<bounds x="111" y="431" width="30" height="30"/>
		</element>
		<element name="lamp98" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_98" ref="debug_lamp_label_98">
			<bounds x="175" y="431" width="30" height="30"/>
		</element>
		<element name="lamp99" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_99" ref="debug_lamp_label_99">
			<bounds x="239" y="431" width="30" height="30"/>
		</element>
		<element name="lamp100" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_100" ref="debug_lamp_label_100">
			<bounds x="303" y="431" width="30" height="30"/>
		</element>
		<element name="lamp101" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_101" ref="debug_lamp_label_101">
			<bounds x="367" y="431" width="30" height="30"/>
		</element>
		<element name="lamp102" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_102" ref="debug_lamp_label_102">
			<bounds x="431" y="431" width="30" height="30"/>
		</element>
		<element name="lamp103" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_103" ref="debug_lamp_label_103">
			<bounds x="495" y="431" width="30" height="30"/>
		</element>
		<element name="lamp104" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_104" ref="debug_lamp_label_104">
			<bounds x="559" y="431" width="30" height="30"/>
		</element>
		<element name="lamp105" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_105" ref="debug_lamp_label_105">
			<bounds x="623" y="431" width="30" height="30"/>
		</element>
		<element name="lamp106" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_106" ref="debug_lamp_label_106">
			<bounds x="687" y="431" width="30" height="30"/>
		</element>
		<element name="lamp107" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_107" ref="debug_lamp_label_107">
			<bounds x="751" y="431" width="30" height="30"/>
		</element>
		<element name="lamp108" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_108" ref="debug_lamp_label_108">
			<bounds x="815" y="431" width="30" height="30"/>
		</element>
		<element name="lamp109" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_109" ref="debug_lamp_label_109">
			<bounds x="879" y="431" width="30" height="30"/>
		</element>
		<element name="lamp110" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_110" ref="debug_lamp_label_110">
			<bounds x="943" y="431" width="30" height="30"/>
		</element>
		<element name="lamp111" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_111" ref="debug_lamp_label_111">
			<bounds x="1007" y="431" width="30" height="30"/>
		</element>
		<element name="lamp112" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_112" ref="debug_lamp_label_112">
			<bounds x="47" y="495" width="30" height="30"/>
		</element>
		<element name="lamp113" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_113" ref="debug_lamp_label_113">
			<bounds x="111" y="495" width="30" height="30"/>
		</element>
		<element name="lamp114" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_114" ref="debug_lamp_label_114">
			<bounds x="175" y="495" width="30" height="30"/>
		</element>
		<element name="lamp115" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_115" ref="debug_lamp_label_115">
			<bounds x="239" y="495" width="30" height="30"/>
		</element>
		<element name="lamp116" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_116" ref="debug_lamp_label_116">
			<bounds x="303" y="495" width="30" height="30"/>
		</element>
		<element name="lamp117" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_117" ref="debug_lamp_label_117">
			<bounds x="367" y="495" width="30" height="30"/>
		</element>
		<element name="lamp118" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_118" ref="debug_lamp_label_118">
			<bounds x="431" y="495" width="30" height="30"/>
		</element>
		<element name="lamp119" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_119" ref="debug_lamp_label_119">
			<bounds x="495" y="495" width="30" height="30"/>
		</element>
		<element name="lamp120" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_120" ref="debug_lamp_label_120">
			<bounds x="559" y="495" width="30" height="30"/>
		</element>
		<element name="lamp121" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_121" ref="debug_lamp_label_121">
			<bounds x="623" y="495" width="30" height="30"/>
		</element>
		<element name="lamp122" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_122" ref="debug_lamp_label_122">
			<bounds x="687" y="495" width="30" height="30"/>
		</element>
		<element name="lamp123" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_123" ref="debug_lamp_label_123">
			<bounds x="751" y="495" width="30" height="30"/>
		</element>
		<element name="lamp124" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_124" ref="debug_lamp_label_124">
			<bounds x="815" y="495" width="30" height="30"/>
		</element>
		<element name="lamp125" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_125" ref="debug_lamp_label_125">
			<bounds x="879" y="495" width="30" height="30"/>
		</element>
		<element name="lamp126" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_126" ref="debug_lamp_label_126">
			<bounds x="943" y="495" width="30" height="30"/>
		</element>
		<element name="lamp127" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_127" ref="debug_lamp_label_127">
			<bounds x="1007" y="495" width="30" height="30"/>
		</element>
		<element name="lamp128" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_128" ref="debug_lamp_label_128">
			<bounds x="47" y="559" width="30" height="30"/>
		</element>
		<element name="lamp129" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_129" ref="debug_lamp_label_129">
			<bounds x="111" y="559" width="30" height="30"/>
		</element>
		<element name="lamp130" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_130" ref="debug_lamp_label_130">
			<bounds x="175" y="559" width="30" height="30"/>
		</element>
		<element name="lamp131" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_131" ref="debug_lamp_label_131">
			<bounds x="239" y="559" width="30" height="30"/>
		</element>
		<element name="lamp132" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_132" ref="debug_lamp_label_132">
			<bounds x="303" y="559" width="30" height="30"/>
		</element>
		<element name="lamp133" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_133" ref="debug_lamp_label_133">
			<bounds x="367" y="559" width="30" height="30"/>
		</element>
		<element name="lamp134" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_134" ref="debug_lamp_label_134">
			<bounds x="431" y="559" width="30" height="30"/>
		</element>
		<element name="lamp135" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_135" ref="debug_lamp_label_135">
			<bounds x="495" y="559" width="30" height="30"/>
		</element>
		<element name="lamp136" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_136" ref="debug_lamp_label_136">
			<bounds x="559" y="559" width="30" height="30"/>
		</element>
		<element name="lamp137" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_137" ref="debug_lamp_label_137">
			<bounds x="623" y="559" width="30" height="30"/>
		</element>
		<element name="lamp138" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_138" ref="debug_lamp_label_138">
			<bounds x="687" y="559" width="30" height="30"/>
		</element>
		<element name="lamp139" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_139" ref="debug_lamp_label_139">
			<bounds x="751" y="559" width="30" height="30"/>
		</element>
		<element name="lamp140" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_140" ref="debug_lamp_label_140">
			<bounds x="815" y="559" width="30" height="30"/>
		</element>
		<element name="lamp141" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_141" ref="debug_lamp_label_141">
			<bounds x="879" y="559" width="30" height="30"/>
		</element>
		<element name="lamp142" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_142" ref="debug_lamp_label_142">
			<bounds x="943" y="559" width="30" height="30"/>
		</element>
		<element name="lamp143" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_143" ref="debug_lamp_label_143">
			<bounds x="1007" y="559" width="30" height="30"/>
		</element>
		<element name="lamp144" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_144" ref="debug_lamp_label_144">
			<bounds x="47" y="623" width="30" height="30"/>
		</element>
		<element name="lamp145" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_145" ref="debug_lamp_label_145">
			<bounds x="111" y="623" width="30" height="30"/>
		</element>
		<element name="lamp146" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_146" ref="debug_lamp_label_146">
			<bounds x="175" y="623" width="30" height="30"/>
		</element>
		<element name="lamp147" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_147" ref="debug_lamp_label_147">
			<bounds x="239" y="623" width="30" height="30"/>
		</element>
		<element name="lamp148" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_148" ref="debug_lamp_label_148">
			<bounds x="303" y="623" width="30" height="30"/>
		</element>
		<element name="lamp149" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_149" ref="debug_lamp_label_149">
			<bounds x="367" y="623" width="30" height="30"/>
		</element>
		<element name="lamp150" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_150" ref="debug_lamp_label_150">
			<bounds x="431" y="623" width="30" height="30"/>
		</element>
		<element name="lamp151" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_151" ref="debug_lamp_label_151">
			<bounds x="495" y="623" width="30" height="30"/>
		</element>
		<element name="lamp152" ref="debug_lamp_button" state="0">
			<bounds x="544" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_152" ref="debug_lamp_label_152">
			<bounds x="559" y="623" width="30" height="30"/>
		</element>
		<element name="lamp153" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_153" ref="debug_lamp_label_153">
			<bounds x="623" y="623" width="30" height="30"/>
		</element>
		<element name="lamp154" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_154" ref="debug_lamp_label_154">
			<bounds x="687" y="623" width="30" height="30"/>
		</element>
		<element name="lamp155" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_155" ref="debug_lamp_label_155">
			<bounds x="751" y="623" width="30" height="30"/>
		</element>
		<element name="lamp156" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_156" ref="debug_lamp_label_156">
			<bounds x="815" y="623" width="30" height="30"/>
		</element>
		<element name="lamp157" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_157" ref="debug_lamp_label_157">
			<bounds x="879" y="623" width="30" height="30"/>
		</element>
		<element name="lamp158" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_158" ref="debug_lamp_label_158">
			<bounds x="943" y="623" width="30" height="30"/>
		</element>
		<element name="lamp159" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_159" ref="debug_lamp_label_159">
			<bounds x="1007" y="623" width="30" height="30"/>
		</element>
		<element name="lamp160" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_160" ref="debug_lamp_label_160">
			<bounds x="47" y="687" width="30" height="30"/>
		</element>
		<element name="lamp161" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_161" ref="debug_lamp_label_161">
			<bounds x="111" y="687" width="30" height="30"/>
		</element>
		<element name="lamp162" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_162" ref="debug_lamp_label_162">
			<bounds x="175" y="687" width="30" height="30"/>
		</element>
		<element name="lamp163" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_163" ref="debug_lamp_label_163">
			<bounds x="239" y="687" width="30" height="30"/>
		</element>
		<element name="lamp164" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_164" ref="debug_lamp_label_164">
			<bounds x="303" y="687" width="30" height="30"/>
		</element>
		<element name="lamp165" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_165" ref="debug_lamp_label_165">
			<bounds x="367" y="687" width="30" height="30"/>
		</element>
		<element name="lamp166" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_166" ref="debug_lamp_label_166">
			<bounds x="431" y="687" width="30" height="30"/>
		</element>
		<element name="lamp167" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_167" ref="debug_lamp_label_167">
			<bounds x="495" y="687" width="30" height="30"/>
		</element>
		<element name="lamp168" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_168" ref="debug_lamp_label_168">
			<bounds x="559" y="687" width="30" height="30"/>
		</element>
		<element name="lamp169" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_169" ref="debug_lamp_label_169">
			<bounds x="623" y="687" width="30" height="30"/>
		</element>
		<element name="lamp170" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_170" ref="debug_lamp_label_170">
			<bounds x="687" y="687" width="30" height="30"/>
		</element>
		<element name="lamp171" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_171" ref="debug_lamp_label_171">
			<bounds x="751" y="687" width="30" height="30"/>
		</element>
		<element name="lamp172" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_172" ref="debug_lamp_label_172">
			<bounds x="815" y="687" width="30" height="30"/>
		</element>
		<element name="lamp173" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_173" ref="debug_lamp_label_173">
			<bounds x="879" y="687" width="30" height="30"/>
		</element>
		<element name="lamp174" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_174" ref="debug_lamp_label_174">
			<bounds x="943" y="687" width="30" height="30"/>
		</element>
		<element name="lamp175" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_175" ref="debug_lamp_label_175">
			<bounds x="1007" y="687" width="30" height="30"/>
		</element>
		<element name="lamp176" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_176" ref="debug_lamp_label_176">
			<bounds x="47" y="751" width="30" height="30"/>
		</element>
		<element name="lamp177" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_177" ref="debug_lamp_label_177">
			<bounds x="111" y="751" width="30" height="30"/>
		</element>
		<element name="lamp178" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_178" ref="debug_lamp_label_178">
			<bounds x="175" y="751" width="30" height="30"/>
		</element>
		<element name="lamp179" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_179" ref="debug_lamp_label_179">
			<bounds x="239" y="751" width="30" height="30"/>
		</element>
		<element name="lamp180" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_180" ref="debug_lamp_label_180">
			<bounds x="303" y="751" width="30" height="30"/>
		</element>
		<element name="lamp181" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_181" ref="debug_lamp_label_181">
			<bounds x="367" y="751" width="30" height="30"/>
		</element>
		<element name="lamp182" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_182" ref="debug_lamp_label_182">
			<bounds x="431" y="751" width="30" height="30"/>
		</element>
		<element name="lamp183" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_183" ref="debug_lamp_label_183">
			<bounds x="495" y="751" width="30" height="30"/>
		</element>
		<element name="lamp184" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_184" ref="debug_lamp_label_184">
			<bounds x="559" y="751" width="30" height="30"/>
		</element>
		<element name="lamp185" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_185" ref="debug_lamp_label_185">
			<bounds x="623" y="751" width="30" height="30"/>
		</element>
		<element name="lamp186" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_186" ref="debug_lamp_label_186">
			<bounds x="687" y="751" width="30" height="30"/>
		</element>
		<element name="lamp187" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_187" ref="debug_lamp_label_187">
			<bounds x="751" y="751" width="30" height="30"/>
		</element>
		<element name="lamp188" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_188" ref="debug_lamp_label_188">
			<bounds x="815" y="751" width="30" height="30"/>
		</element>
		<element name="lamp189" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_189" ref="debug_lamp_label_189">
			<bounds x="879" y="751" width="30" height="30"/>
		</element>
		<element name="lamp190" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_190" ref="debug_lamp_label_190">
			<bounds x="943" y="751" width="30" height="30"/>
		</element>
		<element name="lamp191" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_191" ref="debug_lamp_label_191">
			<bounds x="1007" y="751" width="30" height="30"/>
		</element>
		<element name="lamp192" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_192" ref="debug_lamp_label_192">
			<bounds x="47" y="815" width="30" height="30"/>
		</element>
		<element name="lamp193" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_193" ref="debug_lamp_label_193">
			<bounds x="111" y="815" width="30" height="30"/>
		</element>
		<element name="lamp194" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_194" ref="debug_lamp_label_194">
			<bounds x="175" y="815" width="30" height="30"/>
		</element>
		<element name="lamp195" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_195" ref="debug_lamp_label_195">
			<bounds x="239" y="815" width="30" height="30"/>
		</element>
		<element name="lamp196" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_196" ref="debug_lamp_label_196">
			<bounds x="303" y="815" width="30" height="30"/>
		</element>
		<element name="lamp197" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_197" ref="debug_lamp_label_197">
			<bounds x="367" y="815" width="30" height="30"/>
		</element>
		<element name="lamp198" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_198" ref="debug_lamp_label_198">
			<bounds x="431" y="815" width="30" height="30"/>
		</element>
		<element name="lamp199" ref="debug_lamp_button" state="0">
			<bounds x="480" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_199" ref="debug_lamp_label_199">
			<bounds x="495" y="815" width="30" height="30"/>
		</element>
		<element name="lamp200" ref="debug_lamp_button" state="0">
			<bounds x="544" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_200" ref="debug_lamp_label_200">
			<bounds x="559" y="815" width="30" height="30"/>
		</element>
		<element name="lamp201" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_201" ref="debug_lamp_label_201">
			<bounds x="623" y="815" width="30" height="30"/>
		</element>
		<element name="lamp202" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_202" ref="debug_lamp_label_202">
			<bounds x="687" y="815" width="30" height="30"/>
		</element>
		<element name="lamp203" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_203" ref="debug_lamp_label_203">
			<bounds x="751" y="815" width="30" height="30"/>
		</element>
		<element name="lamp204" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_204" ref="debug_lamp_label_204">
			<bounds x="815" y="815" width="30" height="30"/>
		</element>
		<element name="lamp205" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_205" ref="debug_lamp_label_205">
			<bounds x="879" y="815" width="30" height="30"/>
		</element>
		<element name="lamp206" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_206" ref="debug_lamp_label_206">
			<bounds x="943" y="815" width="30" height="30"/>
		</element>
		<element name="lamp207" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_207" ref="debug_lamp_label_207">
			<bounds x="1007" y="815" width="30" height="30"/>
		</element>
		<element name="lamp208" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_208" ref="debug_lamp_label_208">
			<bounds x="47" y="879" width="30" height="30"/>
		</element>
		<element name="lamp209" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_209" ref="debug_lamp_label_209">
			<bounds x="111" y="879" width="30" height="30"/>
		</element>
		<element name="lamp210" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_210" ref="debug_lamp_label_210">
			<bounds x="175" y="879" width="30" height="30"/>
		</element>
		<element name="lamp211" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_211" ref="debug_lamp_label_211">
			<bounds x="239" y="879" width="30" height="30"/>
		</element>
		<element name="lamp212" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_212" ref="debug_lamp_label_212">
			<bounds x="303" y="879" width="30" height="30"/>
		</element>
		<element name="lamp213" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_213" ref="debug_lamp_label_213">
			<bounds x="367" y="879" width="30" height="30"/>
		</element>
		<element name="lamp214" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_214" ref="debug_lamp_label_214">
			<bounds x="431" y="879" width="30" height="30"/>
		</element>
		<element name="lamp215" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_215" ref="debug_lamp_label_215">
			<bounds x="495" y="879" width="30" height="30"/>
		</element>
		<element name="lamp216" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_216" ref="debug_lamp_label_216">
			<bounds x="559" y="879" width="30" height="30"/>
		</element>
		<element name="lamp217" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_217" ref="debug_lamp_label_217">
			<bounds x="623" y="879" width="30" height="30"/>
		</element>
		<element name="lamp218" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_218" ref="debug_lamp_label_218">
			<bounds x="687" y="879" width="30" height="30"/>
		</element>
		<element name="lamp219" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_219" ref="debug_lamp_label_219">
			<bounds x="751" y="879" width="30" height="30"/>
		</element>
		<element name="lamp220" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_220" ref="debug_lamp_label_220">
			<bounds x="815" y="879" width="30" height="30"/>
		</element>
		<element name="lamp221" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_221" ref="debug_lamp_label_221">
			<bounds x="879" y="879" width="30" height="30"/>
		</element>
		<element name="lamp222" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_222" ref="debug_lamp_label_222">
			<bounds x="943" y="879" width="30" height="30"/>
		</element>
		<element name="lamp223" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_223" ref="debug_lamp_label_223">
			<bounds x="1007" y="879" width="30" height="30"/>
		</element>
		<element name="lamp224" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_224" ref="debug_lamp_label_224">
			<bounds x="47" y="943" width="30" height="30"/>
		</element>
		<element name="lamp225" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_225" ref="debug_lamp_label_225">
			<bounds x="111" y="943" width="30" height="30"/>
		</element>
		<element name="lamp226" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_226" ref="debug_lamp_label_226">
			<bounds x="175" y="943" width="30" height="30"/>
		</element>
		<element name="lamp227" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_227" ref="debug_lamp_label_227">
			<bounds x="239" y="943" width="30" height="30"/>
		</element>
		<element name="lamp228" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_228" ref="debug_lamp_label_228">
			<bounds x="303" y="943" width="30" height="30"/>
		</element>
		<element name="lamp229" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_229" ref="debug_lamp_label_229">
			<bounds x="367" y="943" width="30" height="30"/>
		</element>
		<element name="lamp230" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_230" ref="debug_lamp_label_230">
			<bounds x="431" y="943" width="30" height="30"/>
		</element>
		<element name="lamp231" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_231" ref="debug_lamp_label_231">
			<bounds x="495" y="943" width="30" height="30"/>
		</element>
		<element name="lamp232" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_232" ref="debug_lamp_label_232">
			<bounds x="559" y="943" width="30" height="30"/>
		</element>
		<element name="lamp233" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_233" ref="debug_lamp_label_233">
			<bounds x="623" y="943" width="30" height="30"/>
		</element>
		<element name="lamp234" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_234" ref="debug_lamp_label_234">
			<bounds x="687" y="943" width="30" height="30"/>
		</element>
		<element name="lamp235" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_235" ref="debug_lamp_label_235">
			<bounds x="751" y="943" width="30" height="30"/>
		</element>
		<element name="lamp236" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_236" ref="debug_lamp_label_236">
			<bounds x="815" y="943" width="30" height="30"/>
		</element>
		<element name="lamp237" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_237" ref="debug_lamp_label_237">
			<bounds x="879" y="943" width="30" height="30"/>
		</element>
		<element name="lamp238" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_238" ref="debug_lamp_label_238">
			<bounds x="943" y="943" width="30" height="30"/>
		</element>
		<element name="lamp239" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_239" ref="debug_lamp_label_239">
			<bounds x="1007" y="943" width="30" height="30"/>
		</element>
		<element name="lamp240" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_240" ref="debug_lamp_label_240">
			<bounds x="47" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp241" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_241" ref="debug_lamp_label_241">
			<bounds x="111" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp242" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_242" ref="debug_lamp_label_242">
			<bounds x="175" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp243" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_243" ref="debug_lamp_label_243">
			<bounds x="239" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp244" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_244" ref="debug_lamp_label_244">
			<bounds x="303" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp245" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_245" ref="debug_lamp_label_245">
			<bounds x="367" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp246" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_246" ref="debug_lamp_label_246">
			<bounds x="431" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp247" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_247" ref="debug_lamp_label_247">
			<bounds x="495" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp248" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_248" ref="debug_lamp_label_248">
			<bounds x="559" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp249" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_249" ref="debug_lamp_label_249">
			<bounds x="623" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp250" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_250" ref="debug_lamp_label_250">
			<bounds x="687" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp251" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_251" ref="debug_lamp_label_251">
			<bounds x="751" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp252" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_252" ref="debug_lamp_label_252">
			<bounds x="815" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp253" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_253" ref="debug_lamp_label_253">
			<bounds x="879" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp254" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_254" ref="debug_lamp_label_254">
			<bounds x="943" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp255" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_255" ref="debug_lamp_label_255">
			<bounds x="1007" y="1007" width="30" height="30"/>
		</element>
		<element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01">
			<bounds x="1100" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_0" ref="debug_button_label_0">
			<bounds x="1120" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02">
			<bounds x="1184" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_1" ref="debug_button_label_1">
			<bounds x="1204" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04">
			<bounds x="1268" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_2" ref="debug_button_label_2">
			<bounds x="1288" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08">
			<bounds x="1352" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_3" ref="debug_button_label_3">
			<bounds x="1372" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10">
			<bounds x="1436" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_4" ref="debug_button_label_4">
			<bounds x="1456" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20">
			<bounds x="1520" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_5" ref="debug_button_label_5">
			<bounds x="1540" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40">
			<bounds x="1604" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_6" ref="debug_button_label_6">
			<bounds x="1624" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80">
			<bounds x="1688" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_7" ref="debug_button_label_7">
			<bounds x="1708" y="671" width="40" height="22"/>
		</element>
		<element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="1100" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_8" ref="debug_button_label_8">
			<bounds x="1120" y="719" width="40" height="22"/>
		</element>
		<element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="1184" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_9" ref="debug_button_label_9">
			<bounds x="1204" y="719" width="40" height="22"/>
		</element>
		<element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="1268" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_10" ref="debug_button_label_10">
			<bounds x="1288" y="719" width="40" height="22"/>
		</element>
		<element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="1352" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_11" ref="debug_button_label_11">
			<bounds x="1372" y="719" width="40" height="22"/>
		</element>
		<element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="1436" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_12" ref="debug_button_label_12">
			<bounds x="1456" y="719" width="40" height="22"/>
		</element>
		<element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20">
			<bounds x="1520" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_13" ref="debug_button_label_13">
			<bounds x="1540" y="719" width="40" height="22"/>
		</element>
		<element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40">
			<bounds x="1604" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_14" ref="debug_button_label_14">
			<bounds x="1624" y="719" width="40" height="22"/>
		</element>
		<element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x80">
			<bounds x="1688" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_15" ref="debug_button_label_15">
			<bounds x="1708" y="719" width="40" height="22"/>
		</element>
		<element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="1100" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_16" ref="debug_button_label_16">
			<bounds x="1120" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x02">
			<bounds x="1184" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_17" ref="debug_button_label_17">
			<bounds x="1204" y="767" width="40" height="22"/>
		</element>
		<element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="1268" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_18" ref="debug_button_label_18">
			<bounds x="1288" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08">
			<bounds x="1352" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_19" ref="debug_button_label_19">
			<bounds x="1372" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10">
			<bounds x="1436" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_20" ref="debug_button_label_20">
			<bounds x="1456" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20">
			<bounds x="1520" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_21" ref="debug_button_label_21">
			<bounds x="1540" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40">
			<bounds x="1604" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_22" ref="debug_button_label_22">
			<bounds x="1624" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80">
			<bounds x="1688" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_23" ref="debug_button_label_23">
			<bounds x="1708" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01">
			<bounds x="1100" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_24" ref="debug_button_label_24">
			<bounds x="1120" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02">
			<bounds x="1184" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_25" ref="debug_button_label_25">
			<bounds x="1204" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04">
			<bounds x="1268" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_26" ref="debug_button_label_26">
			<bounds x="1288" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08">
			<bounds x="1352" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_27" ref="debug_button_label_27">
			<bounds x="1372" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10">
			<bounds x="1436" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_28" ref="debug_button_label_28">
			<bounds x="1456" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20">
			<bounds x="1520" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_29" ref="debug_button_label_29">
			<bounds x="1540" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40">
			<bounds x="1604" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_30" ref="debug_button_label_30">
			<bounds x="1624" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80">
			<bounds x="1688" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_31" ref="debug_button_label_31">
			<bounds x="1708" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01">
			<bounds x="1100" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_32" ref="debug_button_label_32">
			<bounds x="1120" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02">
			<bounds x="1184" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_33" ref="debug_button_label_33">
			<bounds x="1204" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04">
			<bounds x="1268" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_34" ref="debug_button_label_34">
			<bounds x="1288" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08">
			<bounds x="1352" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_35" ref="debug_button_label_35">
			<bounds x="1372" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10">
			<bounds x="1436" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_36" ref="debug_button_label_36">
			<bounds x="1456" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20">
			<bounds x="1520" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_37" ref="debug_button_label_37">
			<bounds x="1540" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40">
			<bounds x="1604" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_38" ref="debug_button_label_38">
			<bounds x="1624" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80">
			<bounds x="1688" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_39" ref="debug_button_label_39">
			<bounds x="1708" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01">
			<bounds x="1100" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_40" ref="debug_button_label_40">
			<bounds x="1120" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02">
			<bounds x="1184" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_41" ref="debug_button_label_41">
			<bounds x="1204" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04">
			<bounds x="1268" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_42" ref="debug_button_label_42">
			<bounds x="1288" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08">
			<bounds x="1352" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_43" ref="debug_button_label_43">
			<bounds x="1372" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10">
			<bounds x="1436" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_44" ref="debug_button_label_44">
			<bounds x="1456" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20">
			<bounds x="1520" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_45" ref="debug_button_label_45">
			<bounds x="1540" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40">
			<bounds x="1604" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_46" ref="debug_button_label_46">
			<bounds x="1624" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80">
			<bounds x="1688" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_47" ref="debug_button_label_47">
			<bounds x="1708" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01">
			<bounds x="1100" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_48" ref="debug_button_label_48">
			<bounds x="1120" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02">
			<bounds x="1184" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_49" ref="debug_button_label_49">
			<bounds x="1204" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04">
			<bounds x="1268" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_50" ref="debug_button_label_50">
			<bounds x="1288" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08">
			<bounds x="1352" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_51" ref="debug_button_label_51">
			<bounds x="1372" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10">
			<bounds x="1436" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_52" ref="debug_button_label_52">
			<bounds x="1456" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20">
			<bounds x="1520" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_53" ref="debug_button_label_53">
			<bounds x="1540" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40">
			<bounds x="1604" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_54" ref="debug_button_label_54">
			<bounds x="1624" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80">
			<bounds x="1688" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_55" ref="debug_button_label_55">
			<bounds x="1708" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01">
			<bounds x="1100" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_56" ref="debug_button_label_56">
			<bounds x="1120" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02">
			<bounds x="1184" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_57" ref="debug_button_label_57">
			<bounds x="1204" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04">
			<bounds x="1268" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_58" ref="debug_button_label_58">
			<bounds x="1288" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08">
			<bounds x="1352" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_59" ref="debug_button_label_59">
			<bounds x="1372" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10">
			<bounds x="1436" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_60" ref="debug_button_label_60">
			<bounds x="1456" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20">
			<bounds x="1520" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_61" ref="debug_button_label_61">
			<bounds x="1540" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40">
			<bounds x="1604" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_62" ref="debug_button_label_62">
			<bounds x="1624" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80">
			<bounds x="1688" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_63" ref="debug_button_label_63">
			<bounds x="1708" y="1007" width="40" height="22"/>
		</element>
		<element name="vfd0" ref="debug_vfd" state="0">
			<bounds x="1150" y="600" width="32" height="48"/>
		</element>
		<element name="vfd1" ref="debug_vfd" state="0">
			<bounds x="1182" y="600" width="32" height="48"/>
		</element>
		<element name="vfd2" ref="debug_vfd" state="0">
			<bounds x="1214" y="600" width="32" height="48"/>
		</element>
		<element name="vfd3" ref="debug_vfd" state="0">
			<bounds x="1246" y="600" width="32" height="48"/>
		</element>
		<element name="vfd4" ref="debug_vfd" state="0">
			<bounds x="1278" y="600" width="32" height="48"/>
		</element>
		<element name="vfd5" ref="debug_vfd" state="0">
			<bounds x="1310" y="600" width="32" height="48"/>
		</element>
		<element name="vfd6" ref="debug_vfd" state="0">
			<bounds x="1342" y="600" width="32" height="48"/>
		</element>
		<element name="vfd7" ref="debug_vfd" state="0">
			<bounds x="1374" y="600" width="32" height="48"/>
		</element>
		<element name="vfd8" ref="debug_vfd" state="0">
			<bounds x="1406" y="600" width="32" height="48"/>
		</element>
		<element name="vfd9" ref="debug_vfd" state="0">
			<bounds x="1438" y="600" width="32" height="48"/>
		</element>
		<element name="vfd10" ref="debug_vfd" state="0">
			<bounds x="1470" y="600" width="32" height="48"/>
		</element>
		<element name="vfd11" ref="debug_vfd" state="0">
			<bounds x="1502" y="600" width="32" height="48"/>
		</element>
		<element name="vfd12" ref="debug_vfd" state="0">
			<bounds x="1534" y="600" width="32" height="48"/>
		</element>
		<element name="vfd13" ref="debug_vfd" state="0">
			<bounds x="1566" y="600" width="32" height="48"/>
		</element>
		<element name="vfd14" ref="debug_vfd" state="0">
			<bounds x="1598" y="600" width="32" height="48"/>
		</element>
		<element name="vfd15" ref="debug_vfd" state="0">
			<bounds x="1630" y="600" width="32" height="48"/>
		</element>
		<element ref="reel_background">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element name="lamp32" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp33" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp34" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element name="lamp35" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp36" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp37" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element name="lamp48" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp49" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp50" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1660" y="32" width="120" height="240"/>
		</element>
		<element name="lamp65" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="32.0000" width="120.0000" height="240.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<bounds x="1660" y="32" width="120" height="240"/>
		</element>
		<element name="reel1" ref="debug_stepper_value">
			<bounds x="1100" y="272" width="50" height="30"/>
		</element>
		<element name="reel2" ref="debug_stepper_value">
			<bounds x="1240" y="272" width="50" height="30"/>
		</element>
		<element name="reel3" ref="debug_stepper_value">
			<bounds x="1380" y="272" width="50" height="30"/>
		</element>
		<element name="reel5" ref="debug_stepper_value">
			<bounds x="1660" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_0">
			<bounds x="1180" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_1">
			<bounds x="1320" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_2">
			<bounds x="1460" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_4">
			<bounds x="1740" y="272" width="50" height="30"/>
		</element>
	</view>
</mamelayout>