summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/layout/sc4tfclb.lay
blob: 52e88e310db43e6b5ee2496f122de9355f572daa (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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
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
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
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272







































































































































































































































































































































































































































































































































































































































































































                                                                              
                                   














































































































































































































































































































































































































































































































































































































                                                                              
                                   


















































































































































































                                                                              
                                   










































































































                                                                              
                                   






















































































                                                                              
                                   


























































































                                                                              
                                   


















                                                                              
                                    














































































































                                                                              
                                    


































































                                                                              
                                    






























































                                                                              
                                     


















                                                                              
                                     


















                                                                              
                                     


















                                                                              
                                     


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   






























































                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                    






















                                                                              
                                   


















                                                                              
                                   































































































































































































































































































                                                                                                                                                                              







                                                                                                                                                    
                  

                                     



                                                                              

                                              
                                                                 
                       
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  















                                                                                      
                  






                                                                    
                  








                                                                                      




































                                                                 
                                               
                                                                       

                                               
                                                                        
                          
                                                                 
                                                                                           
                          
                                                                 
                                                                                           
                          
                                                                 
                                                                                           
                          
                                                             
                                                                        

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                       
                          
                                                                 
                                                                                           
                          
                                                             
                                                                       

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                      

                                                                   
                                                                      

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                      
                                                                        

                                                               
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                      
                                                                       

                                                               
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                                                                 
                                                                       

                                                                                                          
                                                                       

                                                                                                                  
                                                                       

                                                                                                           
                                                                       

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                       

                                                                                                         
                                                                       

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                    
                                                                       

                                                           
                                                                       

                                                  

                                                                       

                                                    
                                                                       

                                                           
                                                                       

                                                  

                                                                       

                                               
                                                                        

                                                          
                                                                       

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                         
                                                                       
                          


                                     
                                                     
                                                                        

                                                                        
                                                                      

                                                                            
                                                                      

                                                                        
                                                                      

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                              
                                                                       

                                                                            
                                                                       

                                                                          
                                                                       

                                                                            
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                      

                                                                              
                                                                       

                                                                               
                                                                      

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                         

                                                                               
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                       
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                       
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                          
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                       

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                           
                                                                        

                                                                                
                                                                          

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                       
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         
                          

               
<?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_121_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_121_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="30">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_122_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_122_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="JP">
			<color red="0.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_123_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_123_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="JP">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_118_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_118_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_117_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_117_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_119_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_119_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_139_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_139_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_137_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_137_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_138_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_138_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="30">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_160_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_160_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_163_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_163_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="100">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_162_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_162_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="100">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_161_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_161_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="25">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_132_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_132_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_131_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_131_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_130_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_130_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="75">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_129_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_129_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="75">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_120_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_120_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_181_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_181_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_169_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_169_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="HI">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_208_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_208_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="LO">
			<color red="0.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_115_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_115_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="\">
			<color red="0.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_116_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_116_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="/">
			<color red="0.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_133_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_133_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="/">
			<color red="0.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_134_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_134_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="/\">
			<color red="0.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_135_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_135_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="V">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_136_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_136_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="\">
			<color red="0.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_112_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_112_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="75">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_114_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_114_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_113_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_113_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_144_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_144_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Wheel Of">
			<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="Fortune">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_178_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_178_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_179_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_179_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_180_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_180_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="CASH">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="EXPLOSI">
			<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_20_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_20_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_21_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_21_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_22_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_22_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_23_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_23_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="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_24_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_24_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Bonus">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_25_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_25_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_27_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_27_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_26_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_26_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_33_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_33_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Bonus">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_34_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_34_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_35_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_35_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_36_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_36_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_231_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.10" blue="0.10"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.02" blue="0.02"/>
		</rect>
	</element>
	<element name="lamp_231_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.20" blue="0.20"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.05" blue="0.05"/>
		</rect>
		<text string="T">
			<color red="0.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_232_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_232_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="U">
			<color red="0.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_233_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_233_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.06"/>
		</rect>
		<text string="T">
			<color red="0.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_234_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_234_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.25"/>
		</rect>
		<text string="T">
			<color red="0.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_235_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_235_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.13"/>
		</rect>
		<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="lamp_240_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_240_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="F">
			<color red="0.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_241_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_241_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="R">
			<color red="0.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_242_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_242_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.06"/>
		</rect>
		<text string="U">
			<color red="0.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_245_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_245_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.25"/>
		</rect>
		<text string="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="lamp_243_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_243_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.13"/>
		</rect>
		<text string="T">
			<color red="0.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_244_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_244_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="T">
			<color red="0.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_230_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_230_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Club">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_210_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_210_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_211_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_211_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_213_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_213_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="FRUIT">
			<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="BURST">
			<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_214_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_214_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_215_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_215_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="NO 6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="PLEASE">
			<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_216_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_216_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_217_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_217_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDG">
			<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_218_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_218_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_209_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_209_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDG">
			<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_225_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_225_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_224_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_224_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="DOUBLE /">
			<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="NOTHING">
			<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_228_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_228_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_227_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_227_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_226_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_226_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDG">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_182_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_182_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_192_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_192_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_194_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_194_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_195_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_195_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_196_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_196_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="PICK N">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="WIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_197_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_197_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_198_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_198_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_199_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_199_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="SPIN N">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_200_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_200_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_201_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_201_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="8">
			<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="NUDG">
			<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_202_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_202_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_166_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_166_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£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_167_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_167_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="FRUIT">
			<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="MULTI">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_155_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_155_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="12">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_154_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_154_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_153_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_153_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="FRUTTI">
			<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="LOOTTI">
			<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_152_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_152_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_147_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_147_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_146_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_146_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="16">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_145_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_145_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£25">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_176_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_176_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_171_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_171_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BONUS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_11_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_11_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£150">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_10_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_10_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£200">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_9_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_9_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£250">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_83_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_83_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£100">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_84_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_84_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£75">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_85_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_85_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£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_86_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_86_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£25">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_87_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_87_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£30">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_88_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_88_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_89_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_89_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_90_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_90_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_91_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_91_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£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_37_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_37_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_38_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_38_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_39_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_39_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_40_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_40_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_41_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_41_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£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_42_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_42_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_43_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_43_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="LOSE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_9_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_9_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="BELLS JACKPOT">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_84_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_84_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Treble Bar">
			<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="£75">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_88_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_88_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Single Bar">
			<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="£40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_87_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_87_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Melons">
			<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="£30">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_89_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_89_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Oranges">
			<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="£20">
			<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_90_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_90_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Cherries">
			<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="£15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_91_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_91_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X T Bar">
			<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="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_39_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_39_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X D Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£7">
			<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_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_37_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X Melons">
			<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="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_40_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_40_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X Grapes">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£3">
			<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_40_3_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_40_3" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X Grapes">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£3">
			<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_41_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_41_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X Oranges">
			<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">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_38_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_38_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X S Bar">
			<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="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_91_3_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_91_3" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X Bells">
			<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="£10">
			<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_86_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_86_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Grapes">
			<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="£25">
			<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_85_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_85_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Double Bar">
			<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="£50">
			<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_42_2_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_42_2" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 X Cherries">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£1">
			<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_144_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_144">
		<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="£1">
			<color red="0.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_145_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_145">
		<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="Wheel Of">
			<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="Fortune">
			<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_146_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_146">
		<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_147_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_147">
		<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="Hold 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="colour_button_148_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_148">
		<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="Hold 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="colour_button_149_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_149">
		<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="Hold 1">
			<color red="0.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_150_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_150">
		<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="Hold 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="colour_button_151_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="colour_button_151">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.06"/>
		</rect>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_152_border">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_152">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Exchange">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_153_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="colour_button_153">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="Collect">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="reel_background">
		<rect>
			<color red="1.0" green="1.0" blue="1.0"/>
		</rect>
	</element>
	<element name="reel0" defstate="0">
		<reel reelreversed="1" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel1" defstate="0">
		<reel reelreversed="1" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel2" defstate="0">
		<reel reelreversed="1" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel3" defstate="0">
		<reel reelreversed="1" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel4" defstate="0">
		<reel reelreversed="0" stateoffset="-18432" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="led_background">
		<rect>
			<color red="0.4" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_on">
		<rect state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_on">
		<disk state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_off">
		<rect state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_off">
		<disk state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_digit_rect_black">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_red">
		<rect>
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_green">
		<rect>
			<color red="0.0" green="1.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_blue">
		<rect>
			<color red="0.0" green="0.0" blue="1.0"/>
		</rect>
	</element>
	<element name="led_digit_red">
		<led7seg>
			<color red="1.0" green="0.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_green">
		<led7seg>
			<color red="0.0" green="1.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_blue">
		<led7seg>
			<color red="0.0" green="0.5" blue="1.0"/>
		</led7seg>
	</element>
	<element name="vfd0">
		<led14segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led14segsc>
	</element>
	<element name="vfd0_background">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="reel_lamp" defstate="0">
		<rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0"      height="1.0"/>      <color red="0.50" green="0.50" blue="0.50"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75"     height="0.75"/>     <color red="0.80" green="0.80" blue="0.80"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
	</element>
	<element name="label_104">
		<text string="SPINS">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="debug_backdrop_colour">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="debug_lamp_standard">
		<rect state="0">
			<color red="0.00" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_reel">
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
	</element>
	<element name="debug_lamp_segment">
		<rect state="0">
			<color red="0.20" green="0.00" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_button">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="256">
		<param name="n" start="0" increment="1"/>
		<element name="debug_lamp_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_button_standard">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_button_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="64">
		<param name="n" start="0" increment="1"/>
		<element name="debug_button_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_vfd">
		<led14segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led14segsc>
	</element>
	<element name="debug_stepper_value" defstate="0">
		<simplecounter maxstate="999" digits="3">
			<color red="1.0" green="1.0" blue="1.0"/>
		</simplecounter>
	</element>
	<element name="debug_reel_symbol_count_0">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_1">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_2">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_3">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_4">
		<text string="12">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>

	<view name="AWP Simulated Video">
		<element ref="backdrop_colour">
			<bounds x="0" y="0" width="1028" height="651"/>
		</element>
		<element ref="reel_background">
			<bounds x="38" y="382" width="80" height="140"/>
		</element>
		<element name="lamp50" ref="reel_lamp" state="0">
			<bounds x="38.0000" y="382.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp49" ref="reel_lamp" state="0">
			<bounds x="38.0000" y="428.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp48" ref="reel_lamp" state="0">
			<bounds x="38.0000" y="475.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="38" y="382" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="122" y="382" width="80" height="140"/>
		</element>
		<element name="lamp53" ref="reel_lamp" state="0">
			<bounds x="122.0000" y="382.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp52" ref="reel_lamp" state="0">
			<bounds x="122.0000" y="428.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp51" ref="reel_lamp" state="0">
			<bounds x="122.0000" y="475.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="122" y="382" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="206" y="382" width="80" height="140"/>
		</element>
		<element name="lamp66" ref="reel_lamp" state="0">
			<bounds x="206.0000" y="382.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp65" ref="reel_lamp" state="0">
			<bounds x="206.0000" y="428.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp64" ref="reel_lamp" state="0">
			<bounds x="206.0000" y="475.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="206" y="382" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="290" y="382" width="80" height="140"/>
		</element>
		<element name="lamp69" ref="reel_lamp" state="0">
			<bounds x="290.0000" y="382.0000" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp68" ref="reel_lamp" state="0">
			<bounds x="290.0000" y="428.6667" width="80.0000" height="46.6667"/>
		</element>
		<element name="lamp67" ref="reel_lamp" state="0">
			<bounds x="290.0000" y="475.3333" width="80.0000" height="46.6667"/>
		</element>
		<element name="sreel4" ref="reel3" state="0">
			<bounds x="290" y="382" width="80" height="140"/>
		</element>
		<element ref="reel_background">
			<bounds x="49" y="221" width="66" height="54"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="49.0000" y="221.0000" width="66.0000" height="54.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<bounds x="49" y="221" width="66" height="54"/>
		</element>
		<element name="lamp121" ref="lamp_121_1_border" state="0">
			<bounds x="34" y="43" width="19" height="19"/>
		</element>
		<element name="lamp121" ref="lamp_121_1" state="0">
			<bounds x="36" y="45" width="15" height="15"/>
		</element>
		<element name="lamp122" ref="lamp_122_1_border" state="0">
			<bounds x="19" y="27" width="19" height="19"/>
		</element>
		<element name="lamp122" ref="lamp_122_1" state="0">
			<bounds x="21" y="29" width="15" height="15"/>
		</element>
		<element name="lamp123" ref="lamp_123_1_border" state="0">
			<bounds x="19" y="27" width="19" height="19"/>
		</element>
		<element name="lamp123" ref="lamp_123_1" state="0">
			<bounds x="21" y="29" width="15" height="15"/>
		</element>
		<element name="lamp118" ref="lamp_118_1_border" state="0">
			<bounds x="34" y="144" width="19" height="19"/>
		</element>
		<element name="lamp118" ref="lamp_118_1" state="0">
			<bounds x="36" y="146" width="15" height="15"/>
		</element>
		<element name="lamp117" ref="lamp_117_1_border" state="0">
			<bounds x="51" y="127" width="19" height="19"/>
		</element>
		<element name="lamp117" ref="lamp_117_1" state="0">
			<bounds x="53" y="129" width="15" height="15"/>
		</element>
		<element name="lamp119" ref="lamp_119_1_border" state="0">
			<bounds x="17" y="160" width="19" height="19"/>
		</element>
		<element name="lamp119" ref="lamp_119_1" state="0">
			<bounds x="19" y="162" width="15" height="15"/>
		</element>
		<element name="lamp139" ref="lamp_139_1_border" state="0">
			<bounds x="183" y="160" width="19" height="19"/>
		</element>
		<element name="lamp139" ref="lamp_139_1" state="0">
			<bounds x="185" y="162" width="15" height="15"/>
		</element>
		<element name="lamp137" ref="lamp_137_1_border" state="0">
			<bounds x="148" y="126" width="19" height="19"/>
		</element>
		<element name="lamp137" ref="lamp_137_1" state="0">
			<bounds x="150" y="128" width="15" height="15"/>
		</element>
		<element name="lamp138" ref="lamp_138_1_border" state="0">
			<bounds x="165" y="143" width="19" height="19"/>
		</element>
		<element name="lamp138" ref="lamp_138_1" state="0">
			<bounds x="167" y="145" width="15" height="15"/>
		</element>
		<element name="lamp160" ref="lamp_160_1_border" state="0">
			<bounds x="104" y="127" width="19" height="19"/>
		</element>
		<element name="lamp160" ref="lamp_160_1" state="0">
			<bounds x="106" y="129" width="15" height="15"/>
		</element>
		<element name="lamp163" ref="lamp_163_1_border" state="0">
			<bounds x="104" y="162" width="19" height="19"/>
		</element>
		<element name="lamp163" ref="lamp_163_1" state="0">
			<bounds x="106" y="164" width="15" height="15"/>
		</element>
		<element name="lamp162" ref="lamp_162_1_border" state="0">
			<bounds x="104" y="162" width="19" height="19"/>
		</element>
		<element name="lamp162" ref="lamp_162_1" state="0">
			<bounds x="106" y="164" width="15" height="15"/>
		</element>
		<element name="lamp161" ref="lamp_161_1_border" state="0">
			<bounds x="104" y="144" width="19" height="19"/>
		</element>
		<element name="lamp161" ref="lamp_161_1" state="0">
			<bounds x="106" y="146" width="15" height="15"/>
		</element>
		<element name="lamp132" ref="lamp_132_1_border" state="0">
			<bounds x="148" y="59" width="19" height="19"/>
		</element>
		<element name="lamp132" ref="lamp_132_1" state="0">
			<bounds x="150" y="61" width="15" height="15"/>
		</element>
		<element name="lamp131" ref="lamp_131_1_border" state="0">
			<bounds x="164" y="43" width="19" height="19"/>
		</element>
		<element name="lamp131" ref="lamp_131_1" state="0">
			<bounds x="166" y="45" width="15" height="15"/>
		</element>
		<element name="lamp130" ref="lamp_130_1_border" state="0">
			<bounds x="180" y="27" width="19" height="19"/>
		</element>
		<element name="lamp130" ref="lamp_130_1" state="0">
			<bounds x="182" y="29" width="15" height="15"/>
		</element>
		<element name="lamp129" ref="lamp_129_1_border" state="0">
			<bounds x="180" y="27" width="19" height="19"/>
		</element>
		<element name="lamp129" ref="lamp_129_1" state="0">
			<bounds x="182" y="29" width="15" height="15"/>
		</element>
		<element name="lamp120" ref="lamp_120_1_border" state="0">
			<bounds x="51" y="59" width="19" height="19"/>
		</element>
		<element name="lamp120" ref="lamp_120_1" state="0">
			<bounds x="53" y="61" width="15" height="15"/>
		</element>
		<element name="lamp181" ref="lamp_181_1_border" state="0">
			<bounds x="862" y="192" width="47" height="37"/>
		</element>
		<element name="lamp181" ref="lamp_181_1" state="0">
			<bounds x="864" y="194" width="43" height="33"/>
		</element>
		<element name="lamp169" ref="lamp_169_1_border" state="0">
			<bounds x="71" y="201" width="19" height="19"/>
		</element>
		<element name="lamp169" ref="lamp_169_1" state="0">
			<bounds x="73" y="203" width="15" height="15"/>
		</element>
		<element name="lamp208" ref="lamp_208_1_border" state="0">
			<bounds x="71" y="277" width="19" height="19"/>
		</element>
		<element name="lamp208" ref="lamp_208_1" state="0">
			<bounds x="73" y="279" width="15" height="15"/>
		</element>
		<element name="lamp115" ref="lamp_115_1_border" state="0">
			<bounds x="70" y="77" width="19" height="19"/>
		</element>
		<element name="lamp115" ref="lamp_115_1" state="0">
			<bounds x="72" y="79" width="15" height="15"/>
		</element>
		<element name="lamp116" ref="lamp_116_1_border" state="0">
			<bounds x="69" y="110" width="19" height="19"/>
		</element>
		<element name="lamp116" ref="lamp_116_1" state="0">
			<bounds x="71" y="112" width="15" height="15"/>
		</element>
		<element name="lamp133" ref="lamp_133_1_border" state="0">
			<bounds x="131" y="75" width="19" height="19"/>
		</element>
		<element name="lamp133" ref="lamp_133_1" state="0">
			<bounds x="133" y="77" width="15" height="15"/>
		</element>
		<element name="lamp134" ref="lamp_134_1_border" state="0">
			<bounds x="104" y="66" width="19" height="19"/>
		</element>
		<element name="lamp134" ref="lamp_134_1" state="0">
			<bounds x="106" y="68" width="15" height="15"/>
		</element>
		<element name="lamp135" ref="lamp_135_1_border" state="0">
			<bounds x="104" y="110" width="19" height="19"/>
		</element>
		<element name="lamp135" ref="lamp_135_1" state="0">
			<bounds x="106" y="112" width="15" height="15"/>
		</element>
		<element name="lamp136" ref="lamp_136_1_border" state="0">
			<bounds x="131" y="109" width="19" height="19"/>
		</element>
		<element name="lamp136" ref="lamp_136_1" state="0">
			<bounds x="133" y="111" width="15" height="15"/>
		</element>
		<element name="lamp112" ref="lamp_112_1_border" state="0">
			<bounds x="104" y="14" width="19" height="19"/>
		</element>
		<element name="lamp112" ref="lamp_112_1" state="0">
			<bounds x="106" y="16" width="15" height="15"/>
		</element>
		<element name="lamp114" ref="lamp_114_1_border" state="0">
			<bounds x="104" y="48" width="19" height="19"/>
		</element>
		<element name="lamp114" ref="lamp_114_1" state="0">
			<bounds x="106" y="50" width="15" height="15"/>
		</element>
		<element name="lamp113" ref="lamp_113_1_border" state="0">
			<bounds x="104" y="31" width="19" height="19"/>
		</element>
		<element name="lamp113" ref="lamp_113_1" state="0">
			<bounds x="106" y="33" width="15" height="15"/>
		</element>
		<element name="lamp144" ref="lamp_144_1_border" state="0">
			<bounds x="167" y="79" width="57" height="47"/>
		</element>
		<element name="lamp144" ref="lamp_144_1" state="0">
			<bounds x="169" y="81" width="53" height="43"/>
		</element>
		<element name="lamp178" ref="lamp_178_1_border" state="0">
			<bounds x="810" y="136" width="47" height="37"/>
		</element>
		<element name="lamp178" ref="lamp_178_1" state="0">
			<bounds x="812" y="138" width="43" height="33"/>
		</element>
		<element name="lamp179" ref="lamp_179_1_border" state="0">
			<bounds x="862" y="136" width="47" height="37"/>
		</element>
		<element name="lamp179" ref="lamp_179_1" state="0">
			<bounds x="864" y="138" width="43" height="33"/>
		</element>
		<element name="lamp180" ref="lamp_180_1_border" state="0">
			<bounds x="913" y="167" width="67" height="37"/>
		</element>
		<element name="lamp180" ref="lamp_180_1" state="0">
			<bounds x="915" y="169" width="63" height="33"/>
		</element>
		<element name="lamp20" ref="lamp_20_1_border" state="0">
			<bounds x="862" y="411" width="19" height="19"/>
		</element>
		<element name="lamp20" ref="lamp_20_1" state="0">
			<bounds x="864" y="413" width="15" height="15"/>
		</element>
		<element name="lamp21" ref="lamp_21_1_border" state="0">
			<bounds x="862" y="430" width="19" height="19"/>
		</element>
		<element name="lamp21" ref="lamp_21_1" state="0">
			<bounds x="864" y="432" width="15" height="15"/>
		</element>
		<element name="lamp22" ref="lamp_22_1_border" state="0">
			<bounds x="862" y="449" width="19" height="19"/>
		</element>
		<element name="lamp22" ref="lamp_22_1" state="0">
			<bounds x="864" y="451" width="15" height="15"/>
		</element>
		<element name="lamp23" ref="lamp_23_1_border" state="0">
			<bounds x="862" y="468" width="19" height="19"/>
		</element>
		<element name="lamp23" ref="lamp_23_1" state="0">
			<bounds x="864" y="470" width="15" height="15"/>
		</element>
		<element name="lamp24" ref="lamp_24_1_border" state="0">
			<bounds x="854" y="487" width="37" height="19"/>
		</element>
		<element name="lamp24" ref="lamp_24_1" state="0">
			<bounds x="856" y="489" width="33" height="15"/>
		</element>
		<element name="lamp25" ref="lamp_25_1_border" state="0">
			<bounds x="862" y="506" width="19" height="19"/>
		</element>
		<element name="lamp25" ref="lamp_25_1" state="0">
			<bounds x="864" y="508" width="15" height="15"/>
		</element>
		<element name="lamp27" ref="lamp_27_1_border" state="0">
			<bounds x="862" y="545" width="19" height="19"/>
		</element>
		<element name="lamp27" ref="lamp_27_1" state="0">
			<bounds x="864" y="547" width="15" height="15"/>
		</element>
		<element name="lamp26" ref="lamp_26_1_border" state="0">
			<bounds x="862" y="526" width="19" height="19"/>
		</element>
		<element name="lamp26" ref="lamp_26_1" state="0">
			<bounds x="864" y="528" width="15" height="15"/>
		</element>
		<element name="lamp33" ref="lamp_33_1_border" state="0">
			<bounds x="854" y="563" width="37" height="19"/>
		</element>
		<element name="lamp33" ref="lamp_33_1" state="0">
			<bounds x="856" y="565" width="33" height="15"/>
		</element>
		<element name="lamp34" ref="lamp_34_1_border" state="0">
			<bounds x="861" y="582" width="19" height="19"/>
		</element>
		<element name="lamp34" ref="lamp_34_1" state="0">
			<bounds x="863" y="584" width="15" height="15"/>
		</element>
		<element name="lamp35" ref="lamp_35_1_border" state="0">
			<bounds x="862" y="601" width="19" height="19"/>
		</element>
		<element name="lamp35" ref="lamp_35_1" state="0">
			<bounds x="864" y="603" width="15" height="15"/>
		</element>
		<element name="lamp36" ref="lamp_36_1_border" state="0">
			<bounds x="862" y="620" width="19" height="19"/>
		</element>
		<element name="lamp36" ref="lamp_36_1" state="0">
			<bounds x="864" y="622" width="15" height="15"/>
		</element>
		<element name="lamp231" ref="lamp_231_1_border" state="0">
			<bounds x="176" y="293" width="52" height="52"/>
		</element>
		<element name="lamp231" ref="lamp_231_1" state="0">
			<bounds x="178" y="295" width="48" height="48"/>
		</element>
		<element name="lamp232" ref="lamp_232_1_border" state="0">
			<bounds x="230" y="293" width="52" height="52"/>
		</element>
		<element name="lamp232" ref="lamp_232_1" state="0">
			<bounds x="232" y="295" width="48" height="48"/>
		</element>
		<element name="lamp233" ref="lamp_233_1_border" state="0">
			<bounds x="284" y="293" width="52" height="52"/>
		</element>
		<element name="lamp233" ref="lamp_233_1" state="0">
			<bounds x="286" y="295" width="48" height="48"/>
		</element>
		<element name="lamp234" ref="lamp_234_1_border" state="0">
			<bounds x="338" y="293" width="52" height="52"/>
		</element>
		<element name="lamp234" ref="lamp_234_1" state="0">
			<bounds x="340" y="295" width="48" height="48"/>
		</element>
		<element name="lamp235" ref="lamp_235_1_border" state="0">
			<bounds x="392" y="293" width="52" height="52"/>
		</element>
		<element name="lamp235" ref="lamp_235_1" state="0">
			<bounds x="394" y="295" width="48" height="48"/>
		</element>
		<element name="lamp240" ref="lamp_240_1_border" state="0">
			<bounds x="446" y="293" width="52" height="52"/>
		</element>
		<element name="lamp240" ref="lamp_240_1" state="0">
			<bounds x="448" y="295" width="48" height="48"/>
		</element>
		<element name="lamp241" ref="lamp_241_1_border" state="0">
			<bounds x="500" y="293" width="52" height="52"/>
		</element>
		<element name="lamp241" ref="lamp_241_1" state="0">
			<bounds x="502" y="295" width="48" height="48"/>
		</element>
		<element name="lamp242" ref="lamp_242_1_border" state="0">
			<bounds x="554" y="293" width="52" height="52"/>
		</element>
		<element name="lamp242" ref="lamp_242_1" state="0">
			<bounds x="556" y="295" width="48" height="48"/>
		</element>
		<element name="lamp245" ref="lamp_245_1_border" state="0">
			<bounds x="721" y="293" width="52" height="52"/>
		</element>
		<element name="lamp245" ref="lamp_245_1" state="0">
			<bounds x="723" y="295" width="48" height="48"/>
		</element>
		<element name="lamp243" ref="lamp_243_1_border" state="0">
			<bounds x="611" y="293" width="52" height="52"/>
		</element>
		<element name="lamp243" ref="lamp_243_1" state="0">
			<bounds x="613" y="295" width="48" height="48"/>
		</element>
		<element name="lamp244" ref="lamp_244_1_border" state="0">
			<bounds x="667" y="293" width="52" height="52"/>
		</element>
		<element name="lamp244" ref="lamp_244_1" state="0">
			<bounds x="669" y="295" width="48" height="48"/>
		</element>
		<element name="lamp230" ref="lamp_230_1_border" state="0">
			<bounds x="124" y="258" width="52" height="52"/>
		</element>
		<element name="lamp230" ref="lamp_230_1" state="0">
			<bounds x="126" y="260" width="48" height="48"/>
		</element>
		<element name="lamp210" ref="lamp_210_1_border" state="0">
			<bounds x="232" y="247" width="47" height="37"/>
		</element>
		<element name="lamp210" ref="lamp_210_1" state="0">
			<bounds x="234" y="249" width="43" height="33"/>
		</element>
		<element name="lamp211" ref="lamp_211_1_border" state="0">
			<bounds x="279" y="247" width="47" height="37"/>
		</element>
		<element name="lamp211" ref="lamp_211_1" state="0">
			<bounds x="281" y="249" width="43" height="33"/>
		</element>
		<element name="lamp213" ref="lamp_213_1_border" state="0">
			<bounds x="363" y="247" width="47" height="37"/>
		</element>
		<element name="lamp213" ref="lamp_213_1" state="0">
			<bounds x="365" y="249" width="43" height="33"/>
		</element>
		<element name="lamp214" ref="lamp_214_1_border" state="0">
			<bounds x="415" y="247" width="47" height="37"/>
		</element>
		<element name="lamp214" ref="lamp_214_1" state="0">
			<bounds x="417" y="249" width="43" height="33"/>
		</element>
		<element name="lamp215" ref="lamp_215_1_border" state="0">
			<bounds x="466" y="247" width="47" height="37"/>
		</element>
		<element name="lamp215" ref="lamp_215_1" state="0">
			<bounds x="468" y="249" width="43" height="33"/>
		</element>
		<element name="lamp216" ref="lamp_216_1_border" state="0">
			<bounds x="512" y="247" width="47" height="37"/>
		</element>
		<element name="lamp216" ref="lamp_216_1" state="0">
			<bounds x="514" y="249" width="43" height="33"/>
		</element>
		<element name="lamp217" ref="lamp_217_1_border" state="0">
			<bounds x="558" y="247" width="47" height="37"/>
		</element>
		<element name="lamp217" ref="lamp_217_1" state="0">
			<bounds x="560" y="249" width="43" height="33"/>
		</element>
		<element name="lamp218" ref="lamp_218_1_border" state="0">
			<bounds x="609" y="247" width="47" height="37"/>
		</element>
		<element name="lamp218" ref="lamp_218_1" state="0">
			<bounds x="611" y="249" width="43" height="33"/>
		</element>
		<element name="lamp209" ref="lamp_209_1_border" state="0">
			<bounds x="184" y="221" width="47" height="37"/>
		</element>
		<element name="lamp209" ref="lamp_209_1" state="0">
			<bounds x="186" y="223" width="43" height="33"/>
		</element>
		<element name="lamp225" ref="lamp_225_1_border" state="0">
			<bounds x="762" y="247" width="47" height="37"/>
		</element>
		<element name="lamp225" ref="lamp_225_1" state="0">
			<bounds x="764" y="249" width="43" height="33"/>
		</element>
		<element name="lamp224" ref="lamp_224_1_border" state="0">
			<bounds x="696" y="245" width="62" height="47"/>
		</element>
		<element name="lamp224" ref="lamp_224_1" state="0">
			<bounds x="698" y="247" width="58" height="43"/>
		</element>
		<element name="lamp228" ref="lamp_228_1_border" state="0">
			<bounds x="846" y="356" width="47" height="37"/>
		</element>
		<element name="lamp228" ref="lamp_228_1" state="0">
			<bounds x="848" y="358" width="43" height="33"/>
		</element>
		<element name="lamp227" ref="lamp_227_1_border" state="0">
			<bounds x="846" y="311" width="47" height="37"/>
		</element>
		<element name="lamp227" ref="lamp_227_1" state="0">
			<bounds x="848" y="313" width="43" height="33"/>
		</element>
		<element name="lamp226" ref="lamp_226_1_border" state="0">
			<bounds x="822" y="265" width="47" height="37"/>
		</element>
		<element name="lamp226" ref="lamp_226_1" state="0">
			<bounds x="824" y="267" width="43" height="33"/>
		</element>
		<element name="lamp182" ref="lamp_182_1_border" state="0">
			<bounds x="811" y="190" width="47" height="37"/>
		</element>
		<element name="lamp182" ref="lamp_182_1" state="0">
			<bounds x="813" y="192" width="43" height="33"/>
		</element>
		<element name="lamp192" ref="lamp_192_1_border" state="0">
			<bounds x="237" y="190" width="47" height="37"/>
		</element>
		<element name="lamp192" ref="lamp_192_1" state="0">
			<bounds x="239" y="192" width="43" height="33"/>
		</element>
		<element name="lamp194" ref="lamp_194_1_border" state="0">
			<bounds x="316" y="190" width="47" height="37"/>
		</element>
		<element name="lamp194" ref="lamp_194_1" state="0">
			<bounds x="318" y="192" width="43" height="33"/>
		</element>
		<element name="lamp195" ref="lamp_195_1_border" state="0">
			<bounds x="364" y="190" width="47" height="37"/>
		</element>
		<element name="lamp195" ref="lamp_195_1" state="0">
			<bounds x="366" y="192" width="43" height="33"/>
		</element>
		<element name="lamp196" ref="lamp_196_1_border" state="0">
			<bounds x="414" y="190" width="47" height="37"/>
		</element>
		<element name="lamp196" ref="lamp_196_1" state="0">
			<bounds x="416" y="192" width="43" height="33"/>
		</element>
		<element name="lamp197" ref="lamp_197_1_border" state="0">
			<bounds x="463" y="190" width="47" height="37"/>
		</element>
		<element name="lamp197" ref="lamp_197_1" state="0">
			<bounds x="465" y="192" width="43" height="33"/>
		</element>
		<element name="lamp198" ref="lamp_198_1_border" state="0">
			<bounds x="511" y="190" width="47" height="37"/>
		</element>
		<element name="lamp198" ref="lamp_198_1" state="0">
			<bounds x="513" y="192" width="43" height="33"/>
		</element>
		<element name="lamp199" ref="lamp_199_1_border" state="0">
			<bounds x="561" y="190" width="47" height="37"/>
		</element>
		<element name="lamp199" ref="lamp_199_1" state="0">
			<bounds x="563" y="192" width="43" height="33"/>
		</element>
		<element name="lamp200" ref="lamp_200_1_border" state="0">
			<bounds x="610" y="190" width="47" height="37"/>
		</element>
		<element name="lamp200" ref="lamp_200_1" state="0">
			<bounds x="612" y="192" width="43" height="33"/>
		</element>
		<element name="lamp201" ref="lamp_201_1_border" state="0">
			<bounds x="658" y="190" width="47" height="37"/>
		</element>
		<element name="lamp201" ref="lamp_201_1" state="0">
			<bounds x="660" y="192" width="43" height="33"/>
		</element>
		<element name="lamp202" ref="lamp_202_1_border" state="0">
			<bounds x="755" y="190" width="47" height="37"/>
		</element>
		<element name="lamp202" ref="lamp_202_1" state="0">
			<bounds x="757" y="192" width="43" height="33"/>
		</element>
		<element name="lamp166" ref="lamp_166_1_border" state="0">
			<bounds x="599" y="136" width="47" height="37"/>
		</element>
		<element name="lamp166" ref="lamp_166_1" state="0">
			<bounds x="601" y="138" width="43" height="33"/>
		</element>
		<element name="lamp167" ref="lamp_167_1_border" state="0">
			<bounds x="550" y="136" width="47" height="37"/>
		</element>
		<element name="lamp167" ref="lamp_167_1" state="0">
			<bounds x="552" y="138" width="43" height="33"/>
		</element>
		<element name="lamp155" ref="lamp_155_1_border" state="0">
			<bounds x="501" y="136" width="47" height="37"/>
		</element>
		<element name="lamp155" ref="lamp_155_1" state="0">
			<bounds x="503" y="138" width="43" height="33"/>
		</element>
		<element name="lamp154" ref="lamp_154_1_border" state="0">
			<bounds x="452" y="136" width="47" height="37"/>
		</element>
		<element name="lamp154" ref="lamp_154_1" state="0">
			<bounds x="454" y="138" width="43" height="33"/>
		</element>
		<element name="lamp153" ref="lamp_153_1_border" state="0">
			<bounds x="403" y="136" width="47" height="37"/>
		</element>
		<element name="lamp153" ref="lamp_153_1" state="0">
			<bounds x="405" y="138" width="43" height="33"/>
		</element>
		<element name="lamp152" ref="lamp_152_1_border" state="0">
			<bounds x="364" y="136" width="37" height="37"/>
		</element>
		<element name="lamp152" ref="lamp_152_1" state="0">
			<bounds x="366" y="138" width="33" height="33"/>
		</element>
		<element name="lamp147" ref="lamp_147_1_border" state="0">
			<bounds x="325" y="136" width="37" height="37"/>
		</element>
		<element name="lamp147" ref="lamp_147_1" state="0">
			<bounds x="327" y="138" width="33" height="33"/>
		</element>
		<element name="lamp146" ref="lamp_146_1_border" state="0">
			<bounds x="272" y="115" width="52" height="37"/>
		</element>
		<element name="lamp146" ref="lamp_146_1" state="0">
			<bounds x="274" y="117" width="48" height="33"/>
		</element>
		<element name="lamp145" ref="lamp_145_1_border" state="0">
			<bounds x="232" y="94" width="37" height="37"/>
		</element>
		<element name="lamp145" ref="lamp_145_1" state="0">
			<bounds x="234" y="96" width="33" height="33"/>
		</element>
		<element name="lamp176" ref="lamp_176_1_border" state="0">
			<bounds x="722" y="136" width="47" height="37"/>
		</element>
		<element name="lamp176" ref="lamp_176_1" state="0">
			<bounds x="724" y="138" width="43" height="33"/>
		</element>
		<element name="lamp171" ref="lamp_171_1_border" state="0">
			<bounds x="673" y="136" width="47" height="37"/>
		</element>
		<element name="lamp171" ref="lamp_171_1" state="0">
			<bounds x="675" y="138" width="43" height="33"/>
		</element>
		<element name="lamp11" ref="lamp_11_1_border" state="0">
			<bounds x="520" y="449" width="32" height="27"/>
		</element>
		<element name="lamp11" ref="lamp_11_1" state="0">
			<bounds x="522" y="451" width="28" height="23"/>
		</element>
		<element name="lamp10" ref="lamp_10_1_border" state="0">
			<bounds x="487" y="449" width="32" height="27"/>
		</element>
		<element name="lamp10" ref="lamp_10_1" state="0">
			<bounds x="489" y="451" width="28" height="23"/>
		</element>
		<element name="lamp9" ref="lamp_9_1_border" state="0">
			<bounds x="456" y="449" width="32" height="27"/>
		</element>
		<element name="lamp9" ref="lamp_9_1" state="0">
			<bounds x="458" y="451" width="28" height="23"/>
		</element>
		<element name="lamp83" ref="lamp_83_1_border" state="0">
			<bounds x="520" y="477" width="32" height="27"/>
		</element>
		<element name="lamp83" ref="lamp_83_1" state="0">
			<bounds x="522" y="479" width="28" height="23"/>
		</element>
		<element name="lamp84" ref="lamp_84_1_border" state="0">
			<bounds x="487" y="477" width="32" height="27"/>
		</element>
		<element name="lamp84" ref="lamp_84_1" state="0">
			<bounds x="489" y="479" width="28" height="23"/>
		</element>
		<element name="lamp85" ref="lamp_85_1_border" state="0">
			<bounds x="456" y="477" width="32" height="27"/>
		</element>
		<element name="lamp85" ref="lamp_85_1" state="0">
			<bounds x="458" y="479" width="28" height="23"/>
		</element>
		<element name="lamp86" ref="lamp_86_1_border" state="0">
			<bounds x="520" y="504" width="32" height="27"/>
		</element>
		<element name="lamp86" ref="lamp_86_1" state="0">
			<bounds x="522" y="506" width="28" height="23"/>
		</element>
		<element name="lamp87" ref="lamp_87_1_border" state="0">
			<bounds x="487" y="504" width="32" height="27"/>
		</element>
		<element name="lamp87" ref="lamp_87_1" state="0">
			<bounds x="489" y="506" width="28" height="23"/>
		</element>
		<element name="lamp88" ref="lamp_88_1_border" state="0">
			<bounds x="456" y="504" width="32" height="27"/>
		</element>
		<element name="lamp88" ref="lamp_88_1" state="0">
			<bounds x="458" y="506" width="28" height="23"/>
		</element>
		<element name="lamp89" ref="lamp_89_1_border" state="0">
			<bounds x="520" y="531" width="32" height="27"/>
		</element>
		<element name="lamp89" ref="lamp_89_1" state="0">
			<bounds x="522" y="533" width="28" height="23"/>
		</element>
		<element name="lamp90" ref="lamp_90_1_border" state="0">
			<bounds x="487" y="531" width="32" height="27"/>
		</element>
		<element name="lamp90" ref="lamp_90_1" state="0">
			<bounds x="489" y="533" width="28" height="23"/>
		</element>
		<element name="lamp91" ref="lamp_91_1_border" state="0">
			<bounds x="456" y="531" width="32" height="27"/>
		</element>
		<element name="lamp91" ref="lamp_91_1" state="0">
			<bounds x="458" y="533" width="28" height="23"/>
		</element>
		<element name="lamp37" ref="lamp_37_1_border" state="0">
			<bounds x="520" y="559" width="32" height="27"/>
		</element>
		<element name="lamp37" ref="lamp_37_1" state="0">
			<bounds x="522" y="561" width="28" height="23"/>
		</element>
		<element name="lamp38" ref="lamp_38_1_border" state="0">
			<bounds x="487" y="559" width="32" height="27"/>
		</element>
		<element name="lamp38" ref="lamp_38_1" state="0">
			<bounds x="489" y="561" width="28" height="23"/>
		</element>
		<element name="lamp39" ref="lamp_39_1_border" state="0">
			<bounds x="456" y="559" width="32" height="27"/>
		</element>
		<element name="lamp39" ref="lamp_39_1" state="0">
			<bounds x="458" y="561" width="28" height="23"/>
		</element>
		<element name="lamp40" ref="lamp_40_1_border" state="0">
			<bounds x="520" y="589" width="32" height="27"/>
		</element>
		<element name="lamp40" ref="lamp_40_1" state="0">
			<bounds x="522" y="591" width="28" height="23"/>
		</element>
		<element name="lamp41" ref="lamp_41_1_border" state="0">
			<bounds x="487" y="589" width="32" height="27"/>
		</element>
		<element name="lamp41" ref="lamp_41_1" state="0">
			<bounds x="489" y="591" width="28" height="23"/>
		</element>
		<element name="lamp42" ref="lamp_42_1_border" state="0">
			<bounds x="456" y="589" width="32" height="27"/>
		</element>
		<element name="lamp42" ref="lamp_42_1" state="0">
			<bounds x="458" y="591" width="28" height="23"/>
		</element>
		<element name="lamp43" ref="lamp_43_1_border" state="0">
			<bounds x="556" y="597" width="37" height="19"/>
		</element>
		<element name="lamp43" ref="lamp_43_1" state="0">
			<bounds x="558" y="599" width="33" height="15"/>
		</element>
		<element name="lamp9" ref="lamp_9_2_border" state="0">
			<bounds x="42" y="525" width="62" height="32"/>
		</element>
		<element name="lamp9" ref="lamp_9_2" state="0">
			<bounds x="44" y="527" width="58" height="28"/>
		</element>
		<element name="lamp84" ref="lamp_84_2_border" state="0">
			<bounds x="42" y="557" width="62" height="32"/>
		</element>
		<element name="lamp84" ref="lamp_84_2" state="0">
			<bounds x="44" y="559" width="58" height="28"/>
		</element>
		<element name="lamp88" ref="lamp_88_2_border" state="0">
			<bounds x="106" y="525" width="62" height="32"/>
		</element>
		<element name="lamp88" ref="lamp_88_2" state="0">
			<bounds x="108" y="527" width="58" height="28"/>
		</element>
		<element name="lamp87" ref="lamp_87_2_border" state="0">
			<bounds x="106" y="557" width="62" height="32"/>
		</element>
		<element name="lamp87" ref="lamp_87_2" state="0">
			<bounds x="108" y="559" width="58" height="28"/>
		</element>
		<element name="lamp89" ref="lamp_89_2_border" state="0">
			<bounds x="170" y="525" width="62" height="32"/>
		</element>
		<element name="lamp89" ref="lamp_89_2" state="0">
			<bounds x="172" y="527" width="58" height="28"/>
		</element>
		<element name="lamp90" ref="lamp_90_2_border" state="0">
			<bounds x="170" y="557" width="62" height="32"/>
		</element>
		<element name="lamp90" ref="lamp_90_2" state="0">
			<bounds x="172" y="559" width="58" height="28"/>
		</element>
		<element name="lamp91" ref="lamp_91_2_border" state="0">
			<bounds x="234" y="525" width="62" height="32"/>
		</element>
		<element name="lamp91" ref="lamp_91_2" state="0">
			<bounds x="236" y="527" width="58" height="28"/>
		</element>
		<element name="lamp39" ref="lamp_39_2_border" state="0">
			<bounds x="234" y="557" width="62" height="32"/>
		</element>
		<element name="lamp39" ref="lamp_39_2" state="0">
			<bounds x="236" y="559" width="58" height="28"/>
		</element>
		<element name="lamp37" ref="lamp_37_2_border" state="0">
			<bounds x="298" y="524" width="62" height="32"/>
		</element>
		<element name="lamp37" ref="lamp_37_2" state="0">
			<bounds x="300" y="526" width="58" height="28"/>
		</element>
		<element name="lamp40" ref="lamp_40_2_border" state="0">
			<bounds x="298" y="557" width="62" height="32"/>
		</element>
		<element name="lamp40" ref="lamp_40_2" state="0">
			<bounds x="300" y="559" width="58" height="28"/>
		</element>
		<element name="lamp40" ref="lamp_40_3_border" state="0">
			<bounds x="298" y="557" width="62" height="32"/>
		</element>
		<element name="lamp40" ref="lamp_40_3" state="0">
			<bounds x="300" y="559" width="58" height="28"/>
		</element>
		<element name="lamp41" ref="lamp_41_2_border" state="0">
			<bounds x="298" y="589" width="62" height="32"/>
		</element>
		<element name="lamp41" ref="lamp_41_2" state="0">
			<bounds x="300" y="591" width="58" height="28"/>
		</element>
		<element name="lamp38" ref="lamp_38_2_border" state="0">
			<bounds x="234" y="589" width="62" height="32"/>
		</element>
		<element name="lamp38" ref="lamp_38_2" state="0">
			<bounds x="236" y="591" width="58" height="28"/>
		</element>
		<element name="lamp91" ref="lamp_91_3_border" state="0">
			<bounds x="170" y="589" width="62" height="32"/>
		</element>
		<element name="lamp91" ref="lamp_91_3" state="0">
			<bounds x="172" y="591" width="58" height="28"/>
		</element>
		<element name="lamp86" ref="lamp_86_2_border" state="0">
			<bounds x="106" y="589" width="62" height="32"/>
		</element>
		<element name="lamp86" ref="lamp_86_2" state="0">
			<bounds x="108" y="591" width="58" height="28"/>
		</element>
		<element name="lamp85" ref="lamp_85_2_border" state="0">
			<bounds x="43" y="589" width="62" height="32"/>
		</element>
		<element name="lamp85" ref="lamp_85_2" state="0">
			<bounds x="45" y="591" width="58" height="28"/>
		</element>
		<element name="lamp42" ref="lamp_42_2_border" state="0">
			<bounds x="362" y="589" width="62" height="32"/>
		</element>
		<element name="lamp42" ref="lamp_42_2" state="0">
			<bounds x="364" y="591" width="58" height="28"/>
		</element>
		<element name="lamp-1" ref="colour_button_144_border" state="0" inputtag="IN-1" inputmask="0x80">
			<bounds x="721" y="18" width="75" height="27"/>
		</element>
		<element name="lamp-1" ref="colour_button_144" state="0" inputtag="IN-1" inputmask="0x80">
			<bounds x="723" y="20" width="71" height="23"/>
		</element>
		<element name="lamp128" ref="colour_button_145_border" state="0" inputtag="IN-8" inputmask="0x04">
			<bounds x="431" y="26" width="75" height="37"/>
		</element>
		<element name="lamp128" ref="colour_button_145" state="0" inputtag="IN-8" inputmask="0x04">
			<bounds x="433" y="28" width="71" height="33"/>
		</element>
		<element name="lamp4" ref="colour_button_146_border" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="371" y="621" width="75" height="27"/>
		</element>
		<element name="lamp4" ref="colour_button_146" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="373" y="623" width="71" height="23"/>
		</element>
		<element name="lamp2" ref="colour_button_147_border" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="205" y="621" width="75" height="27"/>
		</element>
		<element name="lamp2" ref="colour_button_147" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="207" y="623" width="71" height="23"/>
		</element>
		<element name="lamp1" ref="colour_button_148_border" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="121" y="621" width="75" height="27"/>
		</element>
		<element name="lamp1" ref="colour_button_148" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="123" y="623" width="71" height="23"/>
		</element>
		<element name="lamp0" ref="colour_button_149_border" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="37" y="621" width="75" height="27"/>
		</element>
		<element name="lamp0" ref="colour_button_149" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="39" y="623" width="71" height="23"/>
		</element>
		<element name="lamp3" ref="colour_button_150_border" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="289" y="621" width="75" height="27"/>
		</element>
		<element name="lamp3" ref="colour_button_150" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="291" y="623" width="71" height="23"/>
		</element>
		<element name="lamp7" ref="colour_button_151_border" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="602" y="621" width="75" height="27"/>
		</element>
		<element name="lamp7" ref="colour_button_151" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="604" y="623" width="71" height="23"/>
		</element>
		<element name="lamp6" ref="colour_button_152_border" state="0" inputtag="IN-2" inputmask="0x02">
			<bounds x="525" y="621" width="75" height="27"/>
		</element>
		<element name="lamp6" ref="colour_button_152" state="0" inputtag="IN-2" inputmask="0x02">
			<bounds x="527" y="623" width="71" height="23"/>
		</element>
		<element name="lamp5" ref="colour_button_153_border" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="448" y="621" width="75" height="27"/>
		</element>
		<element name="lamp5" ref="colour_button_153" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="450" y="623" width="71" height="23"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="541" y="23" width="24" height="32"/>
		</element>
		<element name="digit2" ref="led_digit_red">
			<bounds x="541" y="23" width="24" height="32"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="541" y="23" width="24" height="32"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="517" y="23" width="24" height="32"/>
		</element>
		<element name="digit0" ref="led_digit_red">
			<bounds x="517" y="23" width="24" height="32"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="517" y="23" width="24" height="32"/>
			<color alpha="0.1"/>
		</element>
		<element ref="vfd0_background">
			<bounds x="89" y="354" width="227" height="20"/>
		</element>
		<element name="vfd0" ref="vfd0" state="0">
			<bounds x="89" y="354" width="14" height="20"/>
		</element>
		<element name="vfd1" ref="vfd0" state="0">
			<bounds x="103" y="354" width="14" height="20"/>
		</element>
		<element name="vfd2" ref="vfd0" state="0">
			<bounds x="117" y="354" width="14" height="20"/>
		</element>
		<element name="vfd3" ref="vfd0" state="0">
			<bounds x="131" y="354" width="14" height="20"/>
		</element>
		<element name="vfd4" ref="vfd0" state="0">
			<bounds x="145" y="354" width="14" height="20"/>
		</element>
		<element name="vfd5" ref="vfd0" state="0">
			<bounds x="159" y="354" width="14" height="20"/>
		</element>
		<element name="vfd6" ref="vfd0" state="0">
			<bounds x="173" y="354" width="14" height="20"/>
		</element>
		<element name="vfd7" ref="vfd0" state="0">
			<bounds x="187" y="354" width="14" height="20"/>
		</element>
		<element name="vfd8" ref="vfd0" state="0">
			<bounds x="201" y="354" width="14" height="20"/>
		</element>
		<element name="vfd9" ref="vfd0" state="0">
			<bounds x="215" y="354" width="14" height="20"/>
		</element>
		<element name="vfd10" ref="vfd0" state="0">
			<bounds x="229" y="354" width="14" height="20"/>
		</element>
		<element name="vfd11" ref="vfd0" state="0">
			<bounds x="243" y="354" width="14" height="20"/>
		</element>
		<element name="vfd12" ref="vfd0" state="0">
			<bounds x="257" y="354" width="14" height="20"/>
		</element>
		<element name="vfd13" ref="vfd0" state="0">
			<bounds x="271" y="354" width="14" height="20"/>
		</element>
		<element name="vfd14" ref="vfd0" state="0">
			<bounds x="285" y="354" width="14" height="20"/>
		</element>
		<element name="vfd15" ref="vfd0" state="0">
			<bounds x="299" y="354" width="14" height="20"/>
		</element>
		<element name="label104" ref="label_104">
			<bounds x="515" y="56" width="54" height="20"/>
		</element>
	</view>

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