summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/layout/m3xchngg.lay
blob: 7b2d8b2fec5fff642eb313626dd9f534c48508ce (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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085































































































































































































































































































































































































































































































                                                                              
                                      


















                                                                              
                                      







































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                     






























































































































                                                                              
                                      




                                                                              
                                      
































































































                                                                              








                                                                                      















                                                                    








                                                                                      


























                                                                 
                                               
                                                                      

                                               
                                                                         

                                                             
                                                                         

                                               
                                                                         

                                                             
                                                                         

                                               
                                                                         

                                                             
                                                                         

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                     

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                         

                                                                 
                                                                         

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                      
                                                                         

                                                               
                                                                         

                                                                                                                 
                                                                       

                                                                                                          
                                                                       

                                                                                                                 
                                                                      

                                                                                                          
                                                                      

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                       

                                                                                                         
                                                                       

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                 
                                                                        

                                                                                                          
                                                                        

                                                                                                                 
                                                                        

                                                                                                          
                                                                        

                                                                                                                 
                                                                        

                                                                                                          
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                       

                                                           
                                                                       

                                                  

                                                                       

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                       
                                                                       

                                                       
                                                                        

                                                       
                                                                        

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                      

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                        

                                                       
                                                                        

                                                       
                                                                        

                                                       
                                                                        

                                                       
                                                                      

                                                       
                                                                        

                                                       
                                                                        

                                                       
                                                                        

                                                       
                                                                         

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                       
                                                                       

                                                         
                                                                       

                                                         
                                                                       

                                                         
                                                                        
                          


                                     
                                                     
                                                                        
                          
 
                                                                        
                                                                      
                          
                                                                        
                                                                      
                          
                                                                        
                                                                       
                          
                                                                        
                                                                       
                          
                                                                        
                                                                       
                          
                                                                        
                                                                       
                          
                                                                        
                                                                       
                          
                                                                          
                                                                       
                          
                                                                        
                                                                       
                          
                                                                              
                                                                       
                          
                                                                               
                                                                       
                          
                                                                           
                                                                       
                          
                                                                         
                                                                       
                          
                                                                         
                                                                       
                          
                                                                         
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                      
                          
                                                                           
                                                                      
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                       
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                           
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                       
                          
                                                                               
                                                                       
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                       
                          
                                                                               
                                                                       
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                       
                          
                                                                               
                                                                       
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                               
                                                                       
                          
                                                                               
                                                                       
                          
                                                                               
                                                                        
                          
                                                                               
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                       
                          
                                                                                
                                                                       
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                                
                                                                        
                          
                                                                           
                                                                        
                          












                                                                                                
                                                                                                             
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                                          
                                                                         
                          
                                                                                                                          
                                                                         
                          
                                                                                                                          
                                                                         
                          
                                                                                                                          
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                             
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                       
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                              
                                                                         
                          
                                                                                                              
                                                                         
                          
                                                                                                              
                                                                         
                          
                                                                                                                       
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          
                                                                                                                           
                                                                         
                          




















                                                                                                    
                                               
                                                                          

                                                             
                                                                          

                                               
                                                                          

                                                             
                                                                          

                                               
                                                                          

                                                             
                                                                          

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         
                          

               
<?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_28_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_28_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="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_29_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_29_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_30_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_30_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_31_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_31_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="10P">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_38_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_38_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="9">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_39_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_39_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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_24_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_24_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="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_25_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_25_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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_26_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_26_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="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_27_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_27_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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_35_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_35_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="12">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_34_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_34_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="NUDGES">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="GALORE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_37_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_37_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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_36_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.38"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.09"/>
		</rect>
	</element>
	<element name="lamp_36_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.75"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.19"/>
		</rect>
		<text string="11">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_11_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_11_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="MATRIX ">
			<color red="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_33_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_33_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="EACH LIT LINE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="= 2 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_23_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_23_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="LOSE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_22_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_22_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="10p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_21_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_21_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="20p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_20_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_20_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="30p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_19_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_19_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="50p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_18_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_18_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="70p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_17_1_border" defstate="0">
		<disk state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</disk>
		<disk state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</disk>
	</element>
	<element name="lamp_17_1" defstate="0">
		<disk state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</disk>
		<disk state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</disk>
		<text string="£1.00">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.10" y="0.10" width="0.80" height="0.80"/>
		</text>
	</element>
	<element name="lamp_16_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_16_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="£1.50">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_45_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_45_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="CASH">
			<color red="0.0" 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.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_44_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="FOR">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_43_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_43_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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_46_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_46_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="&#x3C; 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="lamp_15_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_15_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.13"/>
		</rect>
		<text string="&#x3C;&#x3C;&#x3C; N U D G E S">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_42_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_42_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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="lamp_41_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_41_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="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_40_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_40_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="FOR">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_32_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_32_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="CASH &#x3E;">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_7_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_7_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.13"/>
		</rect>
		<text string="C A S H &#x3E;&#x3E;&#x3E;">
			<color red="0.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_115_border">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_115">
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.25"/>
		</rect>
		<text string="10p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_116_border">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_116">
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.25"/>
		</rect>
		<text string="20p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_117_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_117">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="AUTO">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_118_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_118">
		<rect state="1">
			<color red="0.00" green="1.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.25"/>
		</rect>
		<text string="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_119_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_119">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="START">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="COLLECT">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_120_border">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.31"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.08"/>
		</rect>
	</element>
	<element name="colour_button_120">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.63"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.16"/>
		</rect>
		<text string="EX">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="CHANG">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_121_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_121">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="START">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="GAMBLE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_122_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_122">
		<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="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="UP">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_123_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_123">
		<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="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="UP">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_124_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_124">
		<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="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="UP">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_125_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_125">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HOLD">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_126_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_126">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HOLD">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_127_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_127">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HOLD">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="reel_background">
		<rect>
			<color red="1.0" green="1.0" blue="1.0"/>
		</rect>
	</element>
	<element name="reel0" defstate="0">
		<reel reelreversed="0" stateoffset="1365" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel1" defstate="0">
		<reel reelreversed="0" stateoffset="1365" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel2" defstate="0">
		<reel reelreversed="0" stateoffset="1365" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="led_background">
		<rect>
			<color red="0.4" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_on">
		<rect state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_on">
		<disk state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_off">
		<rect state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_off">
		<disk state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_digit_rect_black">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_red">
		<rect>
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_green">
		<rect>
			<color red="0.0" green="1.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_blue">
		<rect>
			<color red="0.0" green="0.0" blue="1.0"/>
		</rect>
	</element>
	<element name="led_digit_red">
		<led7seg>
			<color red="1.0" green="0.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_green">
		<led7seg>
			<color red="0.0" green="1.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_blue">
		<led7seg>
			<color red="0.0" green="0.5" blue="1.0"/>
		</led7seg>
	</element>
	<element name="label_13">
		<text string="I">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_14">
		<text string="_">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_15">
		<text string="_">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_16">
		<text string="/">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_17">
		<text string="\">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_18">
		<text string="I">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_19">
		<text string="I">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_20">
		<text string="I">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_21">
		<text string="I">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_22">
		<text string="\">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_23">
		<text string="/">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_24">
		<text string="_">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_25">
		<text string="_">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_26">
		<text string="_">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_27">
		<text string="_">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_28">
		<text string="I">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_29">
		<text string="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="label_30">
		<text string="PLAYS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_39">
		<text string="CASH">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_41">
		<text string="With thanks to Fruitsim for the Roms">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_77">
		<text string="70p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_78">
		<text string="£1.50">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_79">
		<text string="£1.00">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_80">
		<text string="50p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_93">
		<text string="20p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_94">
		<text string="20p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_95">
		<text string="30p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_96">
		<text string="30p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_109">
		<text string="X">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_110">
		<text string="X">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_114">
		<text string="20p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="debug_backdrop_colour">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="debug_lamp_standard">
		<rect state="0">
			<color red="0.00" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_reel">
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
	</element>
	<element name="debug_lamp_segment">
		<rect state="0">
			<color red="0.20" green="0.00" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_button">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="256">
		<param name="n" start="0" increment="1"/>
		<element name="debug_lamp_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_button_standard">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_button_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="64">
		<param name="n" start="0" increment="1"/>
		<element name="debug_button_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_vfd">
		<led16segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led16segsc>
	</element>
	<element name="debug_stepper_value" defstate="0">
		<simplecounter maxstate="999" digits="3">
			<color red="1.0" green="1.0" blue="1.0"/>
		</simplecounter>
	</element>
	<element name="debug_reel_symbol_count_0">
		<text string="24">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_1">
		<text string="24">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_2">
		<text string="24">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>

	<view name="AWP Simulated Video">
		<element ref="backdrop_colour">
			<bounds x="0" y="0" width="794" height="523"/>
		</element>
		<element ref="reel_background">
			<bounds x="311" y="210" width="80" height="140"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="311" y="210" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="395" y="210" width="80" height="140"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="395" y="210" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="479" y="210" width="80" height="140"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="479" y="210" width="80" height="140"/>
		</element>
		<element name="lamp28" ref="lamp_28_1_border" state="0">
			<bounds x="56" y="365" width="47" height="47"/>
		</element>
		<element name="lamp28" ref="lamp_28_1" state="0">
			<bounds x="58" y="367" width="43" height="43"/>
		</element>
		<element name="lamp29" ref="lamp_29_1_border" state="0">
			<bounds x="105" y="365" width="47" height="47"/>
		</element>
		<element name="lamp29" ref="lamp_29_1" state="0">
			<bounds x="107" y="367" width="43" height="43"/>
		</element>
		<element name="lamp30" ref="lamp_30_1_border" state="0">
			<bounds x="154" y="365" width="47" height="47"/>
		</element>
		<element name="lamp30" ref="lamp_30_1" state="0">
			<bounds x="156" y="367" width="43" height="43"/>
		</element>
		<element name="lamp31" ref="lamp_31_1_border" state="0">
			<bounds x="203" y="365" width="47" height="47"/>
		</element>
		<element name="lamp31" ref="lamp_31_1" state="0">
			<bounds x="205" y="367" width="43" height="43"/>
		</element>
		<element name="lamp38" ref="lamp_38_1_border" state="0">
			<bounds x="7" y="120" width="47" height="47"/>
		</element>
		<element name="lamp38" ref="lamp_38_1" state="0">
			<bounds x="9" y="122" width="43" height="43"/>
		</element>
		<element name="lamp39" ref="lamp_39_1_border" state="0">
			<bounds x="7" y="169" width="47" height="47"/>
		</element>
		<element name="lamp39" ref="lamp_39_1" state="0">
			<bounds x="9" y="171" width="43" height="43"/>
		</element>
		<element name="lamp24" ref="lamp_24_1_border" state="0">
			<bounds x="7" y="218" width="47" height="47"/>
		</element>
		<element name="lamp24" ref="lamp_24_1" state="0">
			<bounds x="9" y="220" width="43" height="43"/>
		</element>
		<element name="lamp25" ref="lamp_25_1_border" state="0">
			<bounds x="7" y="267" width="47" height="47"/>
		</element>
		<element name="lamp25" ref="lamp_25_1" state="0">
			<bounds x="9" y="269" width="43" height="43"/>
		</element>
		<element name="lamp26" ref="lamp_26_1_border" state="0">
			<bounds x="7" y="316" width="47" height="47"/>
		</element>
		<element name="lamp26" ref="lamp_26_1" state="0">
			<bounds x="9" y="318" width="43" height="43"/>
		</element>
		<element name="lamp27" ref="lamp_27_1_border" state="0">
			<bounds x="7" y="365" width="47" height="47"/>
		</element>
		<element name="lamp27" ref="lamp_27_1" state="0">
			<bounds x="9" y="367" width="43" height="43"/>
		</element>
		<element name="lamp35" ref="lamp_35_1_border" state="0">
			<bounds x="105" y="70" width="47" height="47"/>
		</element>
		<element name="lamp35" ref="lamp_35_1" state="0">
			<bounds x="107" y="72" width="43" height="43"/>
		</element>
		<element name="lamp34" ref="lamp_34_1_border" state="0">
			<bounds x="153" y="70" width="97" height="47"/>
		</element>
		<element name="lamp34" ref="lamp_34_1" state="0">
			<bounds x="155" y="72" width="93" height="43"/>
		</element>
		<element name="lamp37" ref="lamp_37_1_border" state="0">
			<bounds x="8" y="70" width="47" height="47"/>
		</element>
		<element name="lamp37" ref="lamp_37_1" state="0">
			<bounds x="10" y="72" width="43" height="43"/>
		</element>
		<element name="lamp36" ref="lamp_36_1_border" state="0">
			<bounds x="56" y="70" width="47" height="47"/>
		</element>
		<element name="lamp36" ref="lamp_36_1" state="0">
			<bounds x="58" y="72" width="43" height="43"/>
		</element>
		<element name="lamp11" ref="lamp_11_1_border" state="0">
			<bounds x="67" y="139" width="82" height="37"/>
		</element>
		<element name="lamp11" ref="lamp_11_1" state="0">
			<bounds x="69" y="141" width="78" height="33"/>
		</element>
		<element name="lamp33" ref="lamp_33_1_border" state="0">
			<bounds x="164" y="139" width="94" height="37"/>
		</element>
		<element name="lamp33" ref="lamp_33_1" state="0">
			<bounds x="166" y="141" width="90" height="33"/>
		</element>
		<element name="lamp23" ref="lamp_23_1_border" state="0">
			<bounds x="663" y="358" width="72" height="37"/>
		</element>
		<element name="lamp23" ref="lamp_23_1" state="0">
			<bounds x="665" y="360" width="68" height="33"/>
		</element>
		<element name="lamp22" ref="lamp_22_1_border" state="0">
			<bounds x="609" y="320" width="72" height="37"/>
		</element>
		<element name="lamp22" ref="lamp_22_1" state="0">
			<bounds x="611" y="322" width="68" height="33"/>
		</element>
		<element name="lamp21" ref="lamp_21_1_border" state="0">
			<bounds x="663" y="283" width="72" height="37"/>
		</element>
		<element name="lamp21" ref="lamp_21_1" state="0">
			<bounds x="665" y="285" width="68" height="33"/>
		</element>
		<element name="lamp20" ref="lamp_20_1_border" state="0">
			<bounds x="609" y="245" width="72" height="37"/>
		</element>
		<element name="lamp20" ref="lamp_20_1" state="0">
			<bounds x="611" y="247" width="68" height="33"/>
		</element>
		<element name="lamp19" ref="lamp_19_1_border" state="0">
			<bounds x="663" y="211" width="72" height="37"/>
		</element>
		<element name="lamp19" ref="lamp_19_1" state="0">
			<bounds x="665" y="213" width="68" height="33"/>
		</element>
		<element name="lamp18" ref="lamp_18_1_border" state="0">
			<bounds x="609" y="175" width="72" height="37"/>
		</element>
		<element name="lamp18" ref="lamp_18_1" state="0">
			<bounds x="611" y="177" width="68" height="33"/>
		</element>
		<element name="lamp17" ref="lamp_17_1_border" state="0">
			<bounds x="663" y="137" width="72" height="37"/>
		</element>
		<element name="lamp17" ref="lamp_17_1" state="0">
			<bounds x="665" y="139" width="68" height="33"/>
		</element>
		<element name="lamp16" ref="lamp_16_1_border" state="0">
			<bounds x="608" y="91" width="122" height="37"/>
		</element>
		<element name="lamp16" ref="lamp_16_1" state="0">
			<bounds x="610" y="93" width="118" height="33"/>
		</element>
		<element name="lamp45" ref="lamp_45_1_border" state="0">
			<bounds x="379" y="372" width="62" height="17"/>
		</element>
		<element name="lamp45" ref="lamp_45_1" state="0">
			<bounds x="381" y="374" width="58" height="13"/>
		</element>
		<element name="lamp44" ref="lamp_44_1_border" state="0">
			<bounds x="441" y="372" width="62" height="17"/>
		</element>
		<element name="lamp44" ref="lamp_44_1" state="0">
			<bounds x="443" y="374" width="58" height="13"/>
		</element>
		<element name="lamp43" ref="lamp_43_1_border" state="0">
			<bounds x="503" y="372" width="62" height="17"/>
		</element>
		<element name="lamp43" ref="lamp_43_1" state="0">
			<bounds x="505" y="374" width="58" height="13"/>
		</element>
		<element name="lamp46" ref="lamp_46_1_border" state="0">
			<bounds x="298" y="372" width="82" height="17"/>
		</element>
		<element name="lamp46" ref="lamp_46_1" state="0">
			<bounds x="300" y="374" width="78" height="13"/>
		</element>
		<element name="lamp15" ref="lamp_15_1_border" state="0">
			<bounds x="310" y="355" width="248" height="18"/>
		</element>
		<element name="lamp15" ref="lamp_15_1" state="0">
			<bounds x="312" y="357" width="244" height="14"/>
		</element>
		<element name="lamp42" ref="lamp_42_1_border" state="0">
			<bounds x="298" y="441" width="82" height="17"/>
		</element>
		<element name="lamp42" ref="lamp_42_1" state="0">
			<bounds x="300" y="443" width="78" height="13"/>
		</element>
		<element name="lamp41" ref="lamp_41_1_border" state="0">
			<bounds x="380" y="441" width="62" height="17"/>
		</element>
		<element name="lamp41" ref="lamp_41_1" state="0">
			<bounds x="382" y="443" width="58" height="13"/>
		</element>
		<element name="lamp40" ref="lamp_40_1_border" state="0">
			<bounds x="442" y="441" width="62" height="17"/>
		</element>
		<element name="lamp40" ref="lamp_40_1" state="0">
			<bounds x="444" y="443" width="58" height="13"/>
		</element>
		<element name="lamp32" ref="lamp_32_1_border" state="0">
			<bounds x="504" y="441" width="62" height="17"/>
		</element>
		<element name="lamp32" ref="lamp_32_1" state="0">
			<bounds x="506" y="443" width="58" height="13"/>
		</element>
		<element name="lamp7" ref="lamp_7_1_border" state="0">
			<bounds x="311" y="457" width="248" height="18"/>
		</element>
		<element name="lamp7" ref="lamp_7_1" state="0">
			<bounds x="313" y="459" width="244" height="14"/>
		</element>
		<element name="lamp-1" ref="colour_button_115_border" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="759" y="28" width="34" height="27"/>
		</element>
		<element name="lamp-1" ref="colour_button_115" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="761" y="30" width="30" height="23"/>
		</element>
		<element name="lamp-1" ref="colour_button_116_border" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="759" y="1" width="34" height="27"/>
		</element>
		<element name="lamp-1" ref="colour_button_116" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="761" y="3" width="30" height="23"/>
		</element>
		<element name="lamp3" ref="colour_button_117_border" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="597" y="479" width="75" height="37"/>
		</element>
		<element name="lamp3" ref="colour_button_117" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="599" y="481" width="71" height="33"/>
		</element>
		<element name="lamp0" ref="colour_button_118_border" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="114" y="480" width="75" height="37"/>
		</element>
		<element name="lamp0" ref="colour_button_118" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="116" y="482" width="71" height="33"/>
		</element>
		<element name="lamp1" ref="colour_button_119_border" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="24" y="480" width="75" height="37"/>
		</element>
		<element name="lamp1" ref="colour_button_119" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="26" y="482" width="71" height="33"/>
		</element>
		<element name="lamp8" ref="colour_button_120_border" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="210" y="480" width="78" height="37"/>
		</element>
		<element name="lamp8" ref="colour_button_120" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="212" y="482" width="74" height="33"/>
		</element>
		<element name="lamp2" ref="colour_button_121_border" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="693" y="479" width="75" height="37"/>
		</element>
		<element name="lamp2" ref="colour_button_121" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="695" y="481" width="71" height="33"/>
		</element>
		<element name="lamp14" ref="colour_button_122_border" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="314" y="169" width="75" height="37"/>
		</element>
		<element name="lamp14" ref="colour_button_122" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="316" y="171" width="71" height="33"/>
		</element>
		<element name="lamp13" ref="colour_button_123_border" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="398" y="169" width="75" height="37"/>
		</element>
		<element name="lamp13" ref="colour_button_123" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="400" y="171" width="71" height="33"/>
		</element>
		<element name="lamp12" ref="colour_button_124_border" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="480" y="168" width="75" height="37"/>
		</element>
		<element name="lamp12" ref="colour_button_124" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="482" y="170" width="71" height="33"/>
		</element>
		<element name="lamp6" ref="colour_button_125_border" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="312" y="480" width="75" height="37"/>
		</element>
		<element name="lamp6" ref="colour_button_125" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="314" y="482" width="71" height="33"/>
		</element>
		<element name="lamp5" ref="colour_button_126_border" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="397" y="480" width="75" height="37"/>
		</element>
		<element name="lamp5" ref="colour_button_126" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="399" y="482" width="71" height="33"/>
		</element>
		<element name="lamp4" ref="colour_button_127_border" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="482" y="480" width="75" height="37"/>
		</element>
		<element name="lamp4" ref="colour_button_127" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="484" y="482" width="71" height="33"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="408" y="393" width="34" height="45"/>
		</element>
		<element name="digit3" ref="led_digit_red">
			<bounds x="408" y="393" width="34" height="45"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="408" y="393" width="34" height="45"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="442" y="393" width="34" height="45"/>
		</element>
		<element name="digit4" ref="led_digit_red">
			<bounds x="442" y="393" width="34" height="45"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="442" y="393" width="34" height="45"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="159" y="432" width="30" height="40"/>
		</element>
		<element name="digit2" ref="led_digit_red">
			<bounds x="159" y="432" width="30" height="40"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="159" y="432" width="30" height="40"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="129" y="432" width="30" height="40"/>
		</element>
		<element name="digit1" ref="led_digit_red">
			<bounds x="129" y="432" width="30" height="40"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="129" y="432" width="30" height="40"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="99" y="432" width="30" height="40"/>
		</element>
		<element name="digit0" ref="led_digit_red">
			<bounds x="99" y="432" width="30" height="40"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="99" y="432" width="30" height="40"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="628" y="431" width="30" height="40"/>
		</element>
		<element name="digit5" ref="led_digit_red">
			<bounds x="628" y="431" width="30" height="40"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="628" y="431" width="30" height="40"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="658" y="431" width="30" height="40"/>
		</element>
		<element name="digit6" ref="led_digit_red">
			<bounds x="658" y="431" width="30" height="40"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="658" y="431" width="30" height="40"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="688" y="431" width="30" height="40"/>
		</element>
		<element name="digit7" ref="led_digit_red">
			<bounds x="688" y="431" width="30" height="40"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="688" y="431" width="30" height="40"/>
			<color alpha="0.1"/>
		</element>
		<element name="label13" ref="label_13">
			<bounds x="163" y="292" width="5" height="13"/>
		</element>
		<element name="label14" ref="label_14">
			<bounds x="198" y="307" width="10" height="24"/>
		</element>
		<element name="label15" ref="label_15">
			<bounds x="125" y="308" width="10" height="24"/>
		</element>
		<element name="label16" ref="label_16">
			<bounds x="125" y="291" width="7" height="13"/>
		</element>
		<element name="label17" ref="label_17">
			<bounds x="198" y="293" width="7" height="13"/>
		</element>
		<element name="label18" ref="label_18">
			<bounds x="88" y="292" width="5" height="13"/>
		</element>
		<element name="label19" ref="label_19">
			<bounds x="239" y="292" width="5" height="13"/>
		</element>
		<element name="label20" ref="label_20">
			<bounds x="161" y="231" width="5" height="13"/>
		</element>
		<element name="label21" ref="label_21">
			<bounds x="239" y="231" width="5" height="13"/>
		</element>
		<element name="label22" ref="label_22">
			<bounds x="123" y="229" width="7" height="13"/>
		</element>
		<element name="label23" ref="label_23">
			<bounds x="195" y="231" width="7" height="13"/>
		</element>
		<element name="label24" ref="label_24">
			<bounds x="125" y="248" width="10" height="24"/>
		</element>
		<element name="label25" ref="label_25">
			<bounds x="200" y="247" width="10" height="24"/>
		</element>
		<element name="label26" ref="label_26">
			<bounds x="124" y="189" width="10" height="24"/>
		</element>
		<element name="label27" ref="label_27">
			<bounds x="199" y="189" width="10" height="24"/>
		</element>
		<element name="label28" ref="label_28">
			<bounds x="88" y="231" width="5" height="13"/>
		</element>
		<element name="label29" ref="label_29">
			<bounds x="112" y="413" width="65" height="16"/>
		</element>
		<element name="label30" ref="label_30">
			<bounds x="353" y="408" width="49" height="16"/>
		</element>
		<element name="label39" ref="label_39">
			<bounds x="651" y="412" width="42" height="16"/>
		</element>
		<element name="label41" ref="label_41">
			<bounds x="332" y="146" width="207" height="13"/>
		</element>
		<element name="label77" ref="label_77">
			<bounds x="402" y="58" width="22" height="16"/>
		</element>
		<element name="label78" ref="label_78">
			<bounds x="402" y="22" width="32" height="16"/>
		</element>
		<element name="label79" ref="label_79">
			<bounds x="402" y="40" width="32" height="16"/>
		</element>
		<element name="label80" ref="label_80">
			<bounds x="402" y="76" width="22" height="16"/>
		</element>
		<element name="label93" ref="label_93">
			<bounds x="530" y="76" width="22" height="16"/>
		</element>
		<element name="label94" ref="label_94">
			<bounds x="530" y="58" width="22" height="16"/>
		</element>
		<element name="label95" ref="label_95">
			<bounds x="530" y="22" width="22" height="16"/>
		</element>
		<element name="label96" ref="label_96">
			<bounds x="530" y="40" width="22" height="16"/>
		</element>
		<element name="label109" ref="label_109">
			<bounds x="403" y="108" width="9" height="13"/>
		</element>
		<element name="label110" ref="label_110">
			<bounds x="446" y="108" width="9" height="13"/>
		</element>
		<element name="label114" ref="label_114">
			<bounds x="488" y="106" width="22" height="16"/>
		</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="lamp1" ref="debug_lamp_button" state="0">
			<bounds x="96" y="32" width="60" height="60"/>
		</element>
		<element name="lamp2" ref="debug_lamp_button" state="0">
			<bounds x="160" y="32" width="60" height="60"/>
		</element>
		<element name="lamp3" ref="debug_lamp_button" state="0">
			<bounds x="224" y="32" width="60" height="60"/>
		</element>
		<element name="lamp4" ref="debug_lamp_button" state="0">
			<bounds x="288" y="32" width="60" height="60"/>
		</element>
		<element name="lamp5" ref="debug_lamp_button" state="0">
			<bounds x="352" y="32" width="60" height="60"/>
		</element>
		<element name="lamp6" ref="debug_lamp_button" state="0">
			<bounds x="416" y="32" width="60" height="60"/>
		</element>
		<element name="lamp7" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="32" width="60" height="60"/>
		</element>
		<element name="lamp8" ref="debug_lamp_button" state="0">
			<bounds x="544" y="32" width="60" height="60"/>
		</element>
		<element name="lamp9" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="32" width="60" height="60"/>
		</element>
		<element name="lamp10" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="32" width="60" height="60"/>
		</element>
		<element name="lamp11" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="32" width="60" height="60"/>
		</element>
		<element name="lamp12" ref="debug_lamp_button" state="0">
			<bounds x="800" y="32" width="60" height="60"/>
		</element>
		<element name="lamp13" ref="debug_lamp_button" state="0">
			<bounds x="864" y="32" width="60" height="60"/>
		</element>
		<element name="lamp14" ref="debug_lamp_button" state="0">
			<bounds x="928" y="32" width="60" height="60"/>
		</element>
		<element name="lamp15" ref="debug_lamp_standard" state="0">
			<bounds x="992" y="32" width="60" height="60"/>
		</element>
		<element name="lamp16" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="96" width="60" height="60"/>
		</element>
		<element name="lamp17" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="96" width="60" height="60"/>
		</element>
		<element name="lamp18" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="96" width="60" height="60"/>
		</element>
		<element name="lamp19" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="96" width="60" height="60"/>
		</element>
		<element name="lamp20" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="96" width="60" height="60"/>
		</element>
		<element name="lamp21" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="96" width="60" height="60"/>
		</element>
		<element name="lamp22" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="96" width="60" height="60"/>
		</element>
		<element name="lamp23" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="96" width="60" height="60"/>
		</element>
		<element name="lamp24" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="96" width="60" height="60"/>
		</element>
		<element name="lamp25" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="96" width="60" height="60"/>
		</element>
		<element name="lamp26" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="96" width="60" height="60"/>
		</element>
		<element name="lamp27" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="96" width="60" height="60"/>
		</element>
		<element name="lamp28" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="96" width="60" height="60"/>
		</element>
		<element name="lamp29" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="96" width="60" height="60"/>
		</element>
		<element name="lamp30" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="96" width="60" height="60"/>
		</element>
		<element name="lamp31" ref="debug_lamp_standard" state="0">
			<bounds x="992" y="96" width="60" height="60"/>
		</element>
		<element name="lamp32" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="160" width="60" height="60"/>
		</element>
		<element name="lamp33" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="160" width="60" height="60"/>
		</element>
		<element name="lamp34" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="160" width="60" height="60"/>
		</element>
		<element name="lamp35" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="160" width="60" height="60"/>
		</element>
		<element name="lamp36" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="160" width="60" height="60"/>
		</element>
		<element name="lamp37" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="160" width="60" height="60"/>
		</element>
		<element name="lamp38" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="160" width="60" height="60"/>
		</element>
		<element name="lamp39" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="160" width="60" height="60"/>
		</element>
		<element name="lamp40" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="160" width="60" height="60"/>
		</element>
		<element name="lamp41" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="160" width="60" height="60"/>
		</element>
		<element name="lamp42" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="160" width="60" height="60"/>
		</element>
		<element name="lamp43" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="160" width="60" height="60"/>
		</element>
		<element name="lamp44" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="160" width="60" height="60"/>
		</element>
		<element name="lamp45" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="160" width="60" height="60"/>
		</element>
		<element name="lamp46" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="160" width="60" height="60"/>
		</element>
		<element name="lamp47" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="160" width="60" height="60"/>
		</element>
		<element name="lamp48" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="224" width="60" height="60"/>
		</element>
		<element name="lamp49" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="224" width="60" height="60"/>
		</element>
		<element name="lamp50" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="224" width="60" height="60"/>
		</element>
		<element name="lamp51" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="224" width="60" height="60"/>
		</element>
		<element name="lamp52" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="224" width="60" height="60"/>
		</element>
		<element name="lamp53" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="224" width="60" height="60"/>
		</element>
		<element name="lamp54" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="224" width="60" height="60"/>
		</element>
		<element name="lamp55" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="224" width="60" height="60"/>
		</element>
		<element name="lamp56" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="224" width="60" height="60"/>
		</element>
		<element name="lamp57" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="224" width="60" height="60"/>
		</element>
		<element name="lamp58" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="224" width="60" height="60"/>
		</element>
		<element name="lamp59" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="224" width="60" height="60"/>
		</element>
		<element name="lamp60" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="224" width="60" height="60"/>
		</element>
		<element name="lamp61" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="224" width="60" height="60"/>
		</element>
		<element name="lamp62" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="224" width="60" height="60"/>
		</element>
		<element name="lamp63" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="224" width="60" height="60"/>
		</element>
		<element name="lamp64" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="288" width="60" height="60"/>
		</element>
		<element name="lamp65" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="288" width="60" height="60"/>
		</element>
		<element name="lamp66" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="288" width="60" height="60"/>
		</element>
		<element name="lamp67" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="288" width="60" height="60"/>
		</element>
		<element name="lamp68" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="288" width="60" height="60"/>
		</element>
		<element name="lamp69" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="288" width="60" height="60"/>
		</element>
		<element name="lamp70" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="288" width="60" height="60"/>
		</element>
		<element name="lamp71" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="288" width="60" height="60"/>
		</element>
		<element name="lamp72" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="288" width="60" height="60"/>
		</element>
		<element name="lamp73" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="288" width="60" height="60"/>
		</element>
		<element name="lamp74" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="288" width="60" height="60"/>
		</element>
		<element name="lamp75" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="288" width="60" height="60"/>
		</element>
		<element name="lamp76" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="288" width="60" height="60"/>
		</element>
		<element name="lamp77" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="288" width="60" height="60"/>
		</element>
		<element name="lamp78" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="288" width="60" height="60"/>
		</element>
		<element name="lamp79" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="288" width="60" height="60"/>
		</element>
		<element name="lamp80" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="352" width="60" height="60"/>
		</element>
		<element name="lamp81" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="352" width="60" height="60"/>
		</element>
		<element name="lamp82" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="352" width="60" height="60"/>
		</element>
		<element name="lamp83" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="352" width="60" height="60"/>
		</element>
		<element name="lamp84" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="352" width="60" height="60"/>
		</element>
		<element name="lamp85" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="352" width="60" height="60"/>
		</element>
		<element name="lamp86" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="352" width="60" height="60"/>
		</element>
		<element name="lamp87" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="352" width="60" height="60"/>
		</element>
		<element name="lamp88" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="352" width="60" height="60"/>
		</element>
		<element name="lamp89" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="352" width="60" height="60"/>
		</element>
		<element name="lamp90" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="352" width="60" height="60"/>
		</element>
		<element name="lamp91" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="352" width="60" height="60"/>
		</element>
		<element name="lamp92" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="352" width="60" height="60"/>
		</element>
		<element name="lamp93" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="352" width="60" height="60"/>
		</element>
		<element name="lamp94" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="352" width="60" height="60"/>
		</element>
		<element name="lamp95" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="352" width="60" height="60"/>
		</element>
		<element name="lamp96" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="416" width="60" height="60"/>
		</element>
		<element name="lamp97" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="416" width="60" height="60"/>
		</element>
		<element name="lamp98" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="416" width="60" height="60"/>
		</element>
		<element name="lamp99" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="416" width="60" height="60"/>
		</element>
		<element name="lamp100" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="416" width="60" height="60"/>
		</element>
		<element name="lamp101" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="416" width="60" height="60"/>
		</element>
		<element name="lamp102" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="416" width="60" height="60"/>
		</element>
		<element name="lamp103" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="416" width="60" height="60"/>
		</element>
		<element name="lamp104" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="416" width="60" height="60"/>
		</element>
		<element name="lamp105" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="416" width="60" height="60"/>
		</element>
		<element name="lamp106" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="416" width="60" height="60"/>
		</element>
		<element name="lamp107" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="416" width="60" height="60"/>
		</element>
		<element name="lamp108" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="416" width="60" height="60"/>
		</element>
		<element name="lamp109" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="416" width="60" height="60"/>
		</element>
		<element name="lamp110" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="416" width="60" height="60"/>
		</element>
		<element name="lamp111" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="416" width="60" height="60"/>
		</element>
		<element name="lamp112" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="480" width="60" height="60"/>
		</element>
		<element name="lamp113" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="480" width="60" height="60"/>
		</element>
		<element name="lamp114" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="480" width="60" height="60"/>
		</element>
		<element name="lamp115" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="480" width="60" height="60"/>
		</element>
		<element name="lamp116" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="480" width="60" height="60"/>
		</element>
		<element name="lamp117" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="480" width="60" height="60"/>
		</element>
		<element name="lamp118" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="480" width="60" height="60"/>
		</element>
		<element name="lamp119" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="480" width="60" height="60"/>
		</element>
		<element name="lamp120" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="480" width="60" height="60"/>
		</element>
		<element name="lamp121" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="480" width="60" height="60"/>
		</element>
		<element name="lamp122" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="480" width="60" height="60"/>
		</element>
		<element name="lamp123" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="480" width="60" height="60"/>
		</element>
		<element name="lamp124" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="480" width="60" height="60"/>
		</element>
		<element name="lamp125" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="480" width="60" height="60"/>
		</element>
		<element name="lamp126" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="480" width="60" height="60"/>
		</element>
		<element name="lamp127" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="480" width="60" height="60"/>
		</element>
		<element name="lamp128" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="544" width="60" height="60"/>
		</element>
		<element name="lamp129" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="544" width="60" height="60"/>
		</element>
		<element name="lamp130" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="544" width="60" height="60"/>
		</element>
		<element name="lamp131" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="544" width="60" height="60"/>
		</element>
		<element name="lamp132" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="544" width="60" height="60"/>
		</element>
		<element name="lamp133" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="544" width="60" height="60"/>
		</element>
		<element name="lamp134" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="544" width="60" height="60"/>
		</element>
		<element name="lamp135" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="544" width="60" height="60"/>
		</element>
		<element name="lamp136" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="544" width="60" height="60"/>
		</element>
		<element name="lamp137" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="544" width="60" height="60"/>
		</element>
		<element name="lamp138" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="544" width="60" height="60"/>
		</element>
		<element name="lamp139" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="544" width="60" height="60"/>
		</element>
		<element name="lamp140" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="544" width="60" height="60"/>
		</element>
		<element name="lamp141" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="544" width="60" height="60"/>
		</element>
		<element name="lamp142" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="544" width="60" height="60"/>
		</element>
		<element name="lamp143" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="544" width="60" height="60"/>
		</element>
		<element name="lamp144" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="608" width="60" height="60"/>
		</element>
		<element name="lamp145" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="608" width="60" height="60"/>
		</element>
		<element name="lamp146" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="608" width="60" height="60"/>
		</element>
		<element name="lamp147" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="608" width="60" height="60"/>
		</element>
		<element name="lamp148" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="608" width="60" height="60"/>
		</element>
		<element name="lamp149" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="608" width="60" height="60"/>
		</element>
		<element name="lamp150" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="608" width="60" height="60"/>
		</element>
		<element name="lamp151" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="608" width="60" height="60"/>
		</element>
		<element name="lamp152" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="608" width="60" height="60"/>
		</element>
		<element name="lamp153" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="608" width="60" height="60"/>
		</element>
		<element name="lamp154" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="608" width="60" height="60"/>
		</element>
		<element name="lamp155" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="608" width="60" height="60"/>
		</element>
		<element name="lamp156" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="608" width="60" height="60"/>
		</element>
		<element name="lamp157" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="608" width="60" height="60"/>
		</element>
		<element name="lamp158" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="608" width="60" height="60"/>
		</element>
		<element name="lamp159" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="608" width="60" height="60"/>
		</element>
		<element name="lamp160" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="672" width="60" height="60"/>
		</element>
		<element name="lamp161" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="672" width="60" height="60"/>
		</element>
		<element name="lamp162" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="672" width="60" height="60"/>
		</element>
		<element name="lamp163" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="672" width="60" height="60"/>
		</element>
		<element name="lamp164" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="672" width="60" height="60"/>
		</element>
		<element name="lamp165" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="672" width="60" height="60"/>
		</element>
		<element name="lamp166" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="672" width="60" height="60"/>
		</element>
		<element name="lamp167" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="672" width="60" height="60"/>
		</element>
		<element name="lamp168" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="672" width="60" height="60"/>
		</element>
		<element name="lamp169" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="672" width="60" height="60"/>
		</element>
		<element name="lamp170" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="672" width="60" height="60"/>
		</element>
		<element name="lamp171" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="672" width="60" height="60"/>
		</element>
		<element name="lamp172" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="672" width="60" height="60"/>
		</element>
		<element name="lamp173" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="672" width="60" height="60"/>
		</element>
		<element name="lamp174" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="672" width="60" height="60"/>
		</element>
		<element name="lamp175" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="672" width="60" height="60"/>
		</element>
		<element name="lamp176" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="736" width="60" height="60"/>
		</element>
		<element name="lamp177" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="736" width="60" height="60"/>
		</element>
		<element name="lamp178" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="736" width="60" height="60"/>
		</element>
		<element name="lamp179" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="736" width="60" height="60"/>
		</element>
		<element name="lamp180" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="736" width="60" height="60"/>
		</element>
		<element name="lamp181" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="736" width="60" height="60"/>
		</element>
		<element name="lamp182" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="736" width="60" height="60"/>
		</element>
		<element name="lamp183" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="736" width="60" height="60"/>
		</element>
		<element name="lamp184" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="736" width="60" height="60"/>
		</element>
		<element name="lamp185" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="736" width="60" height="60"/>
		</element>
		<element name="lamp186" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="736" width="60" height="60"/>
		</element>
		<element name="lamp187" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="736" width="60" height="60"/>
		</element>
		<element name="lamp188" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="736" width="60" height="60"/>
		</element>
		<element name="lamp189" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="736" width="60" height="60"/>
		</element>
		<element name="lamp190" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="736" width="60" height="60"/>
		</element>
		<element name="lamp191" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="736" width="60" height="60"/>
		</element>
		<element name="lamp192" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="800" width="60" height="60"/>
		</element>
		<element name="lamp193" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="800" width="60" height="60"/>
		</element>
		<element name="lamp194" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="800" width="60" height="60"/>
		</element>
		<element name="lamp195" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="800" width="60" height="60"/>
		</element>
		<element name="lamp196" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="800" width="60" height="60"/>
		</element>
		<element name="lamp197" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="800" width="60" height="60"/>
		</element>
		<element name="lamp198" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="800" width="60" height="60"/>
		</element>
		<element name="lamp199" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="800" width="60" height="60"/>
		</element>
		<element name="lamp200" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="800" width="60" height="60"/>
		</element>
		<element name="lamp201" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="800" width="60" height="60"/>
		</element>
		<element name="lamp202" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="800" width="60" height="60"/>
		</element>
		<element name="lamp203" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="800" width="60" height="60"/>
		</element>
		<element name="lamp204" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="800" width="60" height="60"/>
		</element>
		<element name="lamp205" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="800" width="60" height="60"/>
		</element>
		<element name="lamp206" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="800" width="60" height="60"/>
		</element>
		<element name="lamp207" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="800" width="60" height="60"/>
		</element>
		<element name="lamp208" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="864" width="60" height="60"/>
		</element>
		<element name="lamp209" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="864" width="60" height="60"/>
		</element>
		<element name="lamp210" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="864" width="60" height="60"/>
		</element>
		<element name="lamp211" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="864" width="60" height="60"/>
		</element>
		<element name="lamp212" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="864" width="60" height="60"/>
		</element>
		<element name="lamp213" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="864" width="60" height="60"/>
		</element>
		<element name="lamp214" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="864" width="60" height="60"/>
		</element>
		<element name="lamp215" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="864" width="60" height="60"/>
		</element>
		<element name="lamp216" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="864" width="60" height="60"/>
		</element>
		<element name="lamp217" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="864" width="60" height="60"/>
		</element>
		<element name="lamp218" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="864" width="60" height="60"/>
		</element>
		<element name="lamp219" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="864" width="60" height="60"/>
		</element>
		<element name="lamp220" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="864" width="60" height="60"/>
		</element>
		<element name="lamp221" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="864" width="60" height="60"/>
		</element>
		<element name="lamp222" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="864" width="60" height="60"/>
		</element>
		<element name="lamp223" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="864" width="60" height="60"/>
		</element>
		<element name="lamp224" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="928" width="60" height="60"/>
		</element>
		<element name="lamp225" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="928" width="60" height="60"/>
		</element>
		<element name="lamp226" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="928" width="60" height="60"/>
		</element>
		<element name="lamp227" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="928" width="60" height="60"/>
		</element>
		<element name="lamp228" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="928" width="60" height="60"/>
		</element>
		<element name="lamp229" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="928" width="60" height="60"/>
		</element>
		<element name="lamp230" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="928" width="60" height="60"/>
		</element>
		<element name="lamp231" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="928" width="60" height="60"/>
		</element>
		<element name="lamp232" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="928" width="60" height="60"/>
		</element>
		<element name="lamp233" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="928" width="60" height="60"/>
		</element>
		<element name="lamp234" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="928" width="60" height="60"/>
		</element>
		<element name="lamp235" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="928" width="60" height="60"/>
		</element>
		<element name="lamp236" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="928" width="60" height="60"/>
		</element>
		<element name="lamp237" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="928" width="60" height="60"/>
		</element>
		<element name="lamp238" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="928" width="60" height="60"/>
		</element>
		<element name="lamp239" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="928" width="60" height="60"/>
		</element>
		<element name="lamp240" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="992" width="60" height="60"/>
		</element>
		<element name="lamp241" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="992" width="60" height="60"/>
		</element>
		<element name="lamp242" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="992" width="60" height="60"/>
		</element>
		<element name="lamp243" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="992" width="60" height="60"/>
		</element>
		<element name="lamp244" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="992" width="60" height="60"/>
		</element>
		<element name="lamp245" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="992" width="60" height="60"/>
		</element>
		<element name="lamp246" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="992" width="60" height="60"/>
		</element>
		<element name="lamp247" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="992" width="60" height="60"/>
		</element>
		<element name="lamp248" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="992" width="60" height="60"/>
		</element>
		<element name="lamp249" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="992" width="60" height="60"/>
		</element>
		<element name="lamp250" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="992" width="60" height="60"/>
		</element>
		<element name="lamp251" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="992" width="60" height="60"/>
		</element>
		<element name="lamp252" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="992" width="60" height="60"/>
		</element>
		<element name="lamp253" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="992" width="60" height="60"/>
		</element>
		<element name="lamp254" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="992" width="60" height="60"/>
		</element>
		<element name="lamp255" ref="debug_lamp_segment" state="0">
			<bounds x="992" y="992" width="60" height="60"/>
		</element>

		<repeat count="16">
			<param name="s" start="0" increment="16" />
			<param name="y" start="47" increment="64" />
			<repeat count="16">
				<param name="n" start="~s~" increment="1" />
				<param name="x" start="47" increment="64" />
				<element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~">
					<bounds x="~x~" y="~y~" width="30" height="30"/>
				</element>
			</repeat>
		</repeat>

		<element name="lamp0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="660" width="80" height="44"/>
		</element>
		<element name="lamp3" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="660" width="80" height="44"/>
		</element>
		<element name="lamp4" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="660" width="80" height="44"/>
		</element>
		<element name="lamp5" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="660" width="80" height="44"/>
		</element>
		<element name="lamp6" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="708" width="80" height="44"/>
		</element>
		<element name="lamp8" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="708" width="80" height="44"/>
		</element>
		<element name="lamp2" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="708" width="80" height="44"/>
		</element>
		<element name="lamp1" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="804" width="80" height="44"/>
		</element>
		<element name="lamp12" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="804" width="80" height="44"/>
		</element>
		<element name="lamp13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="804" width="80" height="44"/>
		</element>
		<element name="lamp14" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_29" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="996" width="80" height="44"/>
		</element>

		<repeat count="8">
			<param name="s" start="0" increment="8" />
			<param name="y" start="671" increment="48" />
			<repeat count="8">
				<param name="n" start="~s~" increment="1" />
				<param name="x" start="1120" increment="84" />
				<element name="debug_button_label_~n~" ref="debug_button_label_~n~">
					<bounds x="~x~" y="~y~" width="40" height="22"/>
				</element>
			</repeat>
		</repeat>

		<repeat count="16">
			<param name="n" start="15" increment="-1" />
			<param name="x" start="1150" increment="32" />
			<element name="vfd~n~" ref="debug_vfd" state="0">
				<bounds x="~x~" y="600" width="32" height="48"/>
			</element>
		</repeat>

		<element ref="reel_background">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element name="reel1" ref="debug_stepper_value">
			<bounds x="1100" y="272" width="50" height="30"/>
		</element>
		<element name="reel2" ref="debug_stepper_value">
			<bounds x="1240" y="272" width="50" height="30"/>
		</element>
		<element name="reel3" ref="debug_stepper_value">
			<bounds x="1380" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_0">
			<bounds x="1180" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_1">
			<bounds x="1320" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_2">
			<bounds x="1460" y="272" width="50" height="30"/>
		</element>
	</view>
</mamelayout>