summaryrefslogtreecommitdiff
path: root/src/glut/dos/tr24.c
blob: 2dd2a78c831af4984e1850277645f7478d517301 (plain)
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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
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
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
/* autogenerated by bdf2c!  do not edit */

/* "Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved." */


#include "internal.h"
/*
typedef struct {
   int width, height;
   int xorig, yorig;
   int xmove;
   const unsigned char *bitmap;
} GLUTBitmapChar;

typedef struct {
   const char *name;
   int height;
   int num;
   const GLUTBitmapChar *const *table;
} GLUTBitmapFont;
*/


static const unsigned char ch32data[] = {
   0x0
};
static const GLUTBitmapChar ch32 = { 1, 1, 0, 0, 6, ch32data };

static const unsigned char ch33data[] = {
   0xc0,0xc0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0
};
static const GLUTBitmapChar ch33 = { 2, 17, -3, 0, 8, ch33data };

static const unsigned char ch34data[] = {
   0x88,0xcc,0xcc,0xcc,0xcc
};
static const GLUTBitmapChar ch34 = { 6, 5, -1, -12, 10, ch34data };

static const unsigned char ch35data[] = {
   0x22,0x0,0x22,0x0,0x22,0x0,0x22,0x0,0x22,0x0,0xff,0xc0,0xff,0xc0,0x11,0x0,
   0x11,0x0,0x11,0x0,0x7f,0xe0,0x7f,0xe0,0x8,0x80,0x8,0x80,0x8,0x80,0x8,0x80,
   0x8,0x80
};
static const GLUTBitmapChar ch35 = { 11, 17, -1, 0, 13, ch35data };

static const unsigned char ch36data[] = {
   0x4,0x0,0x4,0x0,0x3f,0x0,0xe5,0xc0,0xc4,0xc0,0x84,0x60,0x84,0x60,0x4,0x60,
   0x4,0xe0,0x7,0xc0,0x7,0x80,0x1e,0x0,0x3c,0x0,0x74,0x0,0x64,0x0,0x64,0x20,
   0x64,0x60,0x34,0xe0,0x1f,0x80,0x4,0x0,0x4,0x0
};
static const GLUTBitmapChar ch36 = { 11, 21, 0, 2, 12, ch36data };

static const unsigned char ch37data[] = {
   0x30,0x3c,0x0,0x18,0x72,0x0,0xc,0x61,0x0,0x4,0x60,0x80,0x6,0x60,0x80,0x3,
   0x30,0x80,0x1,0x19,0x80,0x1,0x8f,0x0,0x78,0xc0,0x0,0xe4,0x40,0x0,0xc2,0x60,
   0x0,0xc1,0x30,0x0,0xc1,0x10,0x0,0x61,0x18,0x0,0x33,0xfc,0x0,0x1e,0xc,0x0
};
static const GLUTBitmapChar ch37 = { 17, 16, -1, 0, 19, ch37data };

static const unsigned char ch38data[] = {
   0x3c,0x3c,0x7f,0x7e,0xe1,0xe1,0xc0,0xc0,0xc1,0xc0,0xc1,0xa0,0x63,0x20,0x37,0x10,
   0x1e,0x18,0xe,0x3e,0xf,0x0,0x1d,0x80,0x18,0xc0,0x18,0x40,0x18,0x40,0xc,0xc0,
   0x7,0x80
};
static const GLUTBitmapChar ch38 = { 16, 17, -1, 0, 18, ch38data };

static const unsigned char ch39data[] = {
   0xc0,0x60,0x20,0xe0,0xc0
};
static const GLUTBitmapChar ch39 = { 3, 5, -3, -12, 8, ch39data };

static const unsigned char ch40data[] = {
   0x4,0x8,0x10,0x30,0x20,0x60,0x60,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x60,
   0x60,0x20,0x30,0x10,0x8,0x4
};
static const GLUTBitmapChar ch40 = { 6, 22, -1, 5, 8, ch40data };

static const unsigned char ch41data[] = {
   0x80,0x40,0x20,0x30,0x10,0x18,0x18,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0xc,0x18,
   0x18,0x10,0x30,0x20,0x40,0x80
};
static const GLUTBitmapChar ch41 = { 6, 22, -1, 5, 8, ch41data };

static const unsigned char ch42data[] = {
   0x8,0x0,0x1c,0x0,0xc9,0x80,0xeb,0x80,0x1c,0x0,0xeb,0x80,0xc9,0x80,0x1c,0x0,
   0x8,0x0
};
static const GLUTBitmapChar ch42 = { 9, 9, -2, -8, 12, ch42data };

static const unsigned char ch43data[] = {
   0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0xff,0xf0,0xff,0xf0,0x6,0x0,
   0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0
};
static const GLUTBitmapChar ch43 = { 12, 12, -1, -1, 14, ch43data };

static const unsigned char ch44data[] = {
   0xc0,0x60,0x20,0xe0,0xc0
};
static const GLUTBitmapChar ch44 = { 3, 5, -2, 3, 7, ch44data };

static const unsigned char ch45data[] = {
   0xff,0xf0,0xff,0xf0
};
static const GLUTBitmapChar ch45 = { 12, 2, -1, -6, 14, ch45data };

static const unsigned char ch46data[] = {
   0xc0,0xc0
};
static const GLUTBitmapChar ch46 = { 2, 2, -2, 0, 6, ch46data };

static const unsigned char ch47data[] = {
   0xc0,0xc0,0xc0,0x60,0x60,0x20,0x30,0x30,0x10,0x18,0x18,0x8,0xc,0xc,0x4,0x6,
   0x6,0x3,0x3,0x3
};
static const GLUTBitmapChar ch47 = { 8, 20, 1, 3, 7, ch47data };

static const unsigned char ch48data[] = {
   0x1e,0x0,0x33,0x0,0x61,0x80,0x61,0x80,0xe1,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x61,0x80,0x61,0x80,0x33,0x0,
   0x1e,0x0
};
static const GLUTBitmapChar ch48 = { 10, 17, -1, 0, 12, ch48data };

static const unsigned char ch49data[] = {
   0xff,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x78,0x18,
   0x8
};
static const GLUTBitmapChar ch49 = { 8, 17, -2, 0, 12, ch49data };

static const unsigned char ch50data[] = {
   0xff,0x80,0xff,0xc0,0x60,0x40,0x30,0x0,0x18,0x0,0xc,0x0,0x4,0x0,0x6,0x0,
   0x3,0x0,0x3,0x0,0x1,0x80,0x1,0x80,0x81,0x80,0x81,0x80,0x43,0x80,0x7f,0x0,
   0x1c,0x0
};
static const GLUTBitmapChar ch50 = { 10, 17, -1, 0, 12, ch50data };

static const unsigned char ch51data[] = {
   0x78,0x0,0xe6,0x0,0xc3,0x0,0x1,0x0,0x1,0x80,0x1,0x80,0x1,0x80,0x3,0x80,
   0x7,0x0,0x1e,0x0,0xc,0x0,0x6,0x0,0x83,0x0,0x83,0x0,0x47,0x0,0x7e,0x0,
   0x1c,0x0
};
static const GLUTBitmapChar ch51 = { 9, 17, -1, 0, 12, ch51data };

static const unsigned char ch52data[] = {
   0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0xff,0xc0,0xff,0xc0,0xc3,0x0,0x43,0x0,
   0x63,0x0,0x23,0x0,0x33,0x0,0x13,0x0,0x1b,0x0,0xb,0x0,0x7,0x0,0x7,0x0,
   0x3,0x0
};
static const GLUTBitmapChar ch52 = { 10, 17, -1, 0, 12, ch52data };

static const unsigned char ch53data[] = {
   0x7e,0x0,0xe3,0x80,0xc1,0x80,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x1,0xc0,
   0x3,0x80,0xf,0x80,0x7e,0x0,0x78,0x0,0x60,0x0,0x20,0x0,0x20,0x0,0x1f,0x80,
   0x1f,0xc0
};
static const GLUTBitmapChar ch53 = { 10, 17, -1, 0, 12, ch53data };

static const unsigned char ch54data[] = {
   0x1e,0x0,0x7b,0x80,0x61,0x80,0xe0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc1,0x80,0xf3,0x80,0xee,0x0,0x60,0x0,0x70,0x0,0x30,0x0,0x18,0x0,0xe,0x0,
   0x3,0xc0
};
static const GLUTBitmapChar ch54 = { 10, 17, -1, 0, 12, ch54data };

static const unsigned char ch55data[] = {
   0x18,0x0,0x18,0x0,0xc,0x0,0xc,0x0,0xc,0x0,0x4,0x0,0x6,0x0,0x6,0x0,
   0x2,0x0,0x3,0x0,0x3,0x0,0x1,0x0,0x1,0x80,0x81,0x80,0xc0,0xc0,0xff,0xc0,
   0x7f,0xc0
};
static const GLUTBitmapChar ch55 = { 10, 17, -1, 0, 12, ch55data };

static const unsigned char ch56data[] = {
   0x1e,0x0,0x73,0x80,0xe1,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x41,0xc0,0x61,0x80,
   0x37,0x0,0x1e,0x0,0x1e,0x0,0x33,0x0,0x61,0x80,0x61,0x80,0x61,0x80,0x33,0x0,
   0x1e,0x0
};
static const GLUTBitmapChar ch56 = { 10, 17, -1, 0, 12, ch56data };

static const unsigned char ch57data[] = {
   0xf0,0x0,0x1c,0x0,0x6,0x0,0x3,0x0,0x3,0x80,0x1,0x80,0x1d,0x80,0x73,0xc0,
   0x61,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc1,0xc0,0x61,0x80,0x77,0x80,
   0x1e,0x0
};
static const GLUTBitmapChar ch57 = { 10, 17, -1, 0, 12, ch57data };

static const unsigned char ch58data[] = {
   0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0
};
static const GLUTBitmapChar ch58 = { 2, 11, -2, 0, 6, ch58data };

static const unsigned char ch59data[] = {
   0xc0,0x60,0x20,0xe0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0
};
static const GLUTBitmapChar ch59 = { 3, 14, -2, 3, 7, ch59data };

static const unsigned char ch60data[] = {
   0x0,0x60,0x1,0xc0,0x7,0x0,0x1c,0x0,0x70,0x0,0xc0,0x0,0x70,0x0,0x1c,0x0,
   0x7,0x0,0x1,0xc0,0x0,0x60
};
static const GLUTBitmapChar ch60 = { 11, 11, -1, -1, 13, ch60data };

static const unsigned char ch61data[] = {
   0xff,0xf0,0xff,0xf0,0x0,0x0,0x0,0x0,0xff,0xf0,0xff,0xf0
};
static const GLUTBitmapChar ch61 = { 12, 6, -1, -4, 14, ch61data };

static const unsigned char ch62data[] = {
   0xc0,0x0,0x70,0x0,0x1c,0x0,0x7,0x0,0x1,0xc0,0x0,0x60,0x1,0xc0,0x7,0x0,
   0x1c,0x0,0x70,0x0,0xc0,0x0
};
static const GLUTBitmapChar ch62 = { 11, 11, -1, -1, 13, ch62data };

static const unsigned char ch63data[] = {
   0x30,0x30,0x0,0x0,0x10,0x10,0x10,0x18,0x18,0xc,0xe,0x7,0xc3,0xc3,0x83,0xc6,
   0x7c
};
static const GLUTBitmapChar ch63 = { 8, 17, -2, 0, 11, ch63data };

static const unsigned char ch64data[] = {
   0x3,0xf0,0x0,0xe,0xc,0x0,0x18,0x0,0x0,0x30,0x0,0x0,0x61,0xde,0x0,0x63,
   0x7b,0x0,0xc6,0x39,0x80,0xc6,0x18,0x80,0xc6,0x18,0xc0,0xc6,0x18,0x40,0xc6,0xc,
   0x40,0xc3,0xc,0x40,0xc3,0x8c,0x40,0xe1,0xfc,0x40,0x60,0xec,0xc0,0x70,0x0,0x80,
   0x38,0x1,0x80,0x1c,0x3,0x0,0xf,0xe,0x0,0x3,0xf8,0x0
};
static const GLUTBitmapChar ch64 = { 18, 20, -2, 3, 22, ch64data };

static const unsigned char ch65data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0
};
static const GLUTBitmapChar ch65 = { 17, 17, 0, 0, 17, ch65data };

static const unsigned char ch66data[] = {
   0xff,0xe0,0x30,0x78,0x30,0x18,0x30,0xc,0x30,0xc,0x30,0xc,0x30,0x18,0x30,0x38,
   0x3f,0xe0,0x30,0x40,0x30,0x30,0x30,0x18,0x30,0x18,0x30,0x18,0x30,0x30,0x30,0x70,
   0xff,0xc0
};
static const GLUTBitmapChar ch66 = { 14, 17, -1, 0, 16, ch66data };

static const unsigned char ch67data[] = {
   0x7,0xe0,0x1e,0x38,0x38,0x8,0x60,0x4,0x60,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,
   0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0x60,0x4,0x60,0x4,0x38,0xc,0x1c,0x3c,
   0x7,0xe4
};
static const GLUTBitmapChar ch67 = { 14, 17, -1, 0, 16, ch67data };

static const unsigned char ch68data[] = {
   0xff,0xc0,0x30,0x70,0x30,0x38,0x30,0xc,0x30,0xc,0x30,0x6,0x30,0x6,0x30,0x6,
   0x30,0x6,0x30,0x6,0x30,0x6,0x30,0x6,0x30,0xc,0x30,0xc,0x30,0x38,0x30,0x70,
   0xff,0xc0
};
static const GLUTBitmapChar ch68 = { 15, 17, -1, 0, 17, ch68data };

static const unsigned char ch69data[] = {
   0xff,0xf8,0x30,0x18,0x30,0x8,0x30,0x8,0x30,0x0,0x30,0x0,0x30,0x40,0x30,0x40,
   0x3f,0xc0,0x30,0x40,0x30,0x40,0x30,0x0,0x30,0x0,0x30,0x10,0x30,0x10,0x30,0x30,
   0xff,0xf0
};
static const GLUTBitmapChar ch69 = { 13, 17, -1, 0, 15, ch69data };

static const unsigned char ch70data[] = {
   0xfc,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x20,0x30,0x20,
   0x3f,0xe0,0x30,0x20,0x30,0x20,0x30,0x0,0x30,0x0,0x30,0x10,0x30,0x10,0x30,0x30,
   0xff,0xf0
};
static const GLUTBitmapChar ch70 = { 12, 17, -1, 0, 14, ch70data };

static const unsigned char ch71data[] = {
   0x7,0xe0,0x1e,0x38,0x38,0x1c,0x60,0xc,0x60,0xc,0xc0,0xc,0xc0,0xc,0xc0,0x3f,
   0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0x60,0x4,0x60,0x4,0x38,0xc,0x1c,0x3c,
   0x7,0xe4
};
static const GLUTBitmapChar ch71 = { 16, 17, -1, 0, 18, ch71data };

static const unsigned char ch72data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x30,0x6,0x0,0x30,0x6,0x0,0x30,0x6,0x0,0x30,
   0x6,0x0,0x30,0x6,0x0,0x30,0x6,0x0,0x3f,0xfe,0x0,0x30,0x6,0x0,0x30,0x6,
   0x0,0x30,0x6,0x0,0x30,0x6,0x0,0x30,0x6,0x0,0x30,0x6,0x0,0x30,0x6,0x0,
   0xfc,0x1f,0x80
};
static const GLUTBitmapChar ch72 = { 17, 17, -1, 0, 19, ch72data };

static const unsigned char ch73data[] = {
   0xfc,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
   0xfc
};
static const GLUTBitmapChar ch73 = { 6, 17, -1, 0, 8, ch73data };

static const unsigned char ch74data[] = {
   0x78,0x0,0xcc,0x0,0xc6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,
   0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,
   0x1f,0x80
};
static const GLUTBitmapChar ch74 = { 9, 17, -1, 0, 11, ch74data };

static const unsigned char ch75data[] = {
   0xfc,0x1f,0x30,0xe,0x30,0x1c,0x30,0x38,0x30,0x70,0x30,0xe0,0x31,0xc0,0x33,0x80,
   0x3f,0x0,0x3e,0x0,0x33,0x0,0x31,0x80,0x30,0xc0,0x30,0x60,0x30,0x30,0x30,0x18,
   0xfc,0x7e
};
static const GLUTBitmapChar ch75 = { 16, 17, -1, 0, 17, ch75data };

static const unsigned char ch76data[] = {
   0xff,0xf8,0x30,0x18,0x30,0x8,0x30,0x8,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,
   0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,
   0xfc,0x0
};
static const GLUTBitmapChar ch76 = { 13, 17, -1, 0, 14, ch76data };

static const unsigned char ch77data[] = {
   0xf8,0x21,0xf8,0x20,0x60,0x60,0x20,0x60,0x60,0x20,0xd0,0x60,0x20,0xd0,0x60,0x21,
   0x88,0x60,0x21,0x88,0x60,0x23,0x8,0x60,0x23,0x4,0x60,0x26,0x4,0x60,0x26,0x2,
   0x60,0x2c,0x2,0x60,0x2c,0x2,0x60,0x38,0x1,0x60,0x38,0x1,0x60,0x30,0x0,0xe0,
   0xf0,0x0,0xf8
};
static const GLUTBitmapChar ch77 = { 21, 17, -1, 0, 22, ch77data };

static const unsigned char ch78data[] = {
   0xf8,0xc,0x20,0x1c,0x20,0x1c,0x20,0x34,0x20,0x64,0x20,0x64,0x20,0xc4,0x21,0x84,
   0x21,0x84,0x23,0x4,0x26,0x4,0x26,0x4,0x2c,0x4,0x38,0x4,0x38,0x4,0x30,0x4,
   0xf0,0x1f
};
static const GLUTBitmapChar ch78 = { 16, 17, -1, 0, 18, ch78data };

static const unsigned char ch79data[] = {
   0x7,0xe0,0x1c,0x38,0x38,0x1c,0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,
   0x7,0xe0
};
static const GLUTBitmapChar ch79 = { 16, 17, -1, 0, 18, ch79data };

static const unsigned char ch80data[] = {
   0xfc,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,
   0x3f,0xc0,0x30,0x70,0x30,0x30,0x30,0x18,0x30,0x18,0x30,0x18,0x30,0x30,0x30,0x70,
   0xff,0xc0
};
static const GLUTBitmapChar ch80 = { 13, 17, -1, 0, 15, ch80data };

static const unsigned char ch81data[] = {
   0x0,0xf,0x0,0x38,0x0,0x70,0x0,0xe0,0x1,0xc0,0x7,0xe0,0x1c,0x38,0x38,0x1c,
   0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,0x7,0xe0
};
static const GLUTBitmapChar ch81 = { 16, 22, -1, 5, 18, ch81data };

static const unsigned char ch82data[] = {
   0xfc,0x1e,0x30,0x1c,0x30,0x38,0x30,0x70,0x30,0x60,0x30,0xc0,0x31,0xc0,0x33,0x80,
   0x3f,0xc0,0x30,0x70,0x30,0x30,0x30,0x38,0x30,0x18,0x30,0x38,0x30,0x30,0x30,0x70,
   0xff,0xc0
};
static const GLUTBitmapChar ch82 = { 15, 17, -1, 0, 16, ch82data };

static const unsigned char ch83data[] = {
   0x9e,0x0,0xf1,0x80,0xc0,0xc0,0x80,0x60,0x80,0x60,0x0,0x60,0x0,0xe0,0x3,0xc0,
   0xf,0x80,0x1e,0x0,0x78,0x0,0xe0,0x0,0xc0,0x40,0xc0,0x40,0xc0,0xc0,0x63,0xc0,
   0x1e,0x40
};
static const GLUTBitmapChar ch83 = { 11, 17, -1, 0, 13, ch83data };

static const unsigned char ch84data[] = {
   0xf,0xc0,0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,
   0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0x83,0x4,0x83,0x4,0xc3,0xc,
   0xff,0xfc
};
static const GLUTBitmapChar ch84 = { 14, 17, -1, 0, 16, ch84data };

static const unsigned char ch85data[] = {
   0x7,0xe0,0x1c,0x30,0x18,0x8,0x30,0x8,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0xfc,0x1f
};
static const GLUTBitmapChar ch85 = { 16, 17, -1, 0, 18, ch85data };

static const unsigned char ch86data[] = {
   0x1,0x80,0x0,0x1,0x80,0x0,0x1,0x80,0x0,0x3,0xc0,0x0,0x3,0x40,0x0,0x3,
   0x60,0x0,0x6,0x20,0x0,0x6,0x20,0x0,0x6,0x30,0x0,0xc,0x10,0x0,0xc,0x18,
   0x0,0x18,0x8,0x0,0x18,0x8,0x0,0x18,0xc,0x0,0x30,0x4,0x0,0x30,0x6,0x0,
   0xfc,0x1f,0x80
};
static const GLUTBitmapChar ch86 = { 17, 17, 0, 0, 17, ch86data };

static const unsigned char ch87data[] = {
   0x1,0x83,0x0,0x1,0x83,0x0,0x1,0x83,0x80,0x3,0x87,0x80,0x3,0x46,0x80,0x3,
   0x46,0xc0,0x6,0x46,0x40,0x6,0x4c,0x40,0x6,0x4c,0x60,0xc,0x2c,0x60,0xc,0x2c,
   0x20,0x18,0x2c,0x20,0x18,0x18,0x30,0x18,0x18,0x10,0x30,0x18,0x10,0x30,0x18,0x18,
   0xfc,0x7e,0x7e
};
static const GLUTBitmapChar ch87 = { 23, 17, 0, 0, 23, ch87data };

static const unsigned char ch88data[] = {
   0xfc,0xf,0xc0,0x30,0x3,0x80,0x18,0x7,0x0,0x8,0xe,0x0,0x4,0xc,0x0,0x6,
   0x18,0x0,0x2,0x38,0x0,0x1,0x70,0x0,0x0,0xe0,0x0,0x0,0xc0,0x0,0x1,0xc0,
   0x0,0x3,0xa0,0x0,0x3,0x10,0x0,0x6,0x8,0x0,0xe,0xc,0x0,0x1c,0x6,0x0,
   0x7e,0xf,0x80
};
static const GLUTBitmapChar ch88 = { 18, 17, 0, 0, 18, ch88data };

static const unsigned char ch89data[] = {
   0x7,0xe0,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x3,0xc0,
   0x3,0x40,0x6,0x60,0x6,0x20,0xc,0x30,0x1c,0x10,0x18,0x18,0x38,0x8,0x30,0xc,
   0xfc,0x3f
};
static const GLUTBitmapChar ch89 = { 16, 17, 0, 0, 16, ch89data };

static const unsigned char ch90data[] = {
   0xff,0xf8,0xe0,0x18,0x70,0x8,0x30,0x8,0x38,0x0,0x18,0x0,0x1c,0x0,0xe,0x0,
   0x6,0x0,0x7,0x0,0x3,0x0,0x3,0x80,0x1,0xc0,0x80,0xc0,0x80,0xe0,0xc0,0x70,
   0xff,0xf0
};
static const GLUTBitmapChar ch90 = { 13, 17, -1, 0, 15, ch90data };

static const unsigned char ch91data[] = {
   0xf8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0xc0,0xc0,0xf8
};
static const GLUTBitmapChar ch91 = { 5, 21, -2, 4, 8, ch91data };

static const unsigned char ch92data[] = {
   0x6,0x6,0x4,0xc,0xc,0x8,0x18,0x18,0x10,0x30,0x30,0x20,0x60,0x60,0x40,0xc0,
   0xc0
};
static const GLUTBitmapChar ch92 = { 7, 17, 0, 0, 7, ch92data };

static const unsigned char ch93data[] = {
   0xf8,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
   0x18,0x18,0x18,0x18,0xf8
};
static const GLUTBitmapChar ch93 = { 5, 21, -1, 4, 8, ch93data };

static const unsigned char ch94data[] = {
   0x80,0x80,0xc1,0x80,0x41,0x0,0x63,0x0,0x22,0x0,0x36,0x0,0x14,0x0,0x1c,0x0,
   0x8,0x0
};
static const GLUTBitmapChar ch94 = { 9, 9, -1, -8, 11, ch94data };

static const unsigned char ch95data[] = {
   0xff,0xf8,0xff,0xf8
};
static const GLUTBitmapChar ch95 = { 13, 2, 0, 5, 13, ch95data };

static const unsigned char ch96data[] = {
   0x60,0xe0,0x80,0xc0,0x60
};
static const GLUTBitmapChar ch96 = { 3, 5, -2, -12, 7, ch96data };

static const unsigned char ch97data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0
};
static const GLUTBitmapChar ch97 = { 9, 12, -1, 0, 11, ch97data };

static const unsigned char ch98data[] = {
   0x5e,0x0,0x73,0x80,0x61,0x80,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x61,0x80,0x73,0x80,0x6e,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x60,0x0,
   0xe0,0x0
};
static const GLUTBitmapChar ch98 = { 10, 17, -1, 0, 12, ch98data };

static const unsigned char ch99data[] = {
   0x1e,0x0,0x7f,0x0,0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,
   0xc0,0x0,0x41,0x80,0x63,0x80,0x1f,0x0
};
static const GLUTBitmapChar ch99 = { 9, 12, -1, 0, 11, ch99data };

static const unsigned char ch100data[] = {
   0x1e,0xc0,0x73,0x80,0x61,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,
   0xc1,0x80,0x61,0x80,0x73,0x80,0x1d,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,
   0x3,0x80
};
static const GLUTBitmapChar ch100 = { 10, 17, -1, 0, 12, ch100data };

static const unsigned char ch101data[] = {
   0x1e,0x0,0x7f,0x0,0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xff,0x80,
   0xc1,0x80,0x41,0x80,0x63,0x0,0x1e,0x0
};
static const GLUTBitmapChar ch101 = { 9, 12, -1, 0, 11, ch101data };

static const unsigned char ch102data[] = {
   0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0xfe,0x30,0x30,0x30,0x16,
   0xe
};
static const GLUTBitmapChar ch102 = { 7, 17, 0, 0, 7, ch102data };

static const unsigned char ch103data[] = {
   0x3f,0x0,0xf1,0xc0,0xc0,0x60,0xc0,0x20,0x60,0x60,0x3f,0xc0,0x7f,0x0,0x60,0x0,
   0x30,0x0,0x3e,0x0,0x33,0x0,0x61,0x80,0x61,0x80,0x61,0x80,0x61,0x80,0x33,0x0,
   0x1f,0xc0
};
static const GLUTBitmapChar ch103 = { 11, 17, -1, 5, 12, ch103data };

static const unsigned char ch104data[] = {
   0xf1,0xe0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x71,0xc0,0x6f,0x80,0x67,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x60,0x0,
   0xe0,0x0
};
static const GLUTBitmapChar ch104 = { 11, 17, -1, 0, 13, ch104data };

static const unsigned char ch105data[] = {
   0xf0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0xe0,0x0,0x0,0x0,0x60,
   0x60
};
static const GLUTBitmapChar ch105 = { 4, 17, -1, 0, 6, ch105data };

static const unsigned char ch106data[] = {
   0xc0,0xe0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
   0x70,0x0,0x0,0x0,0x30,0x30
};
static const GLUTBitmapChar ch106 = { 4, 22, 0, 5, 6, ch106data };

static const unsigned char ch107data[] = {
   0xf3,0xe0,0x61,0xc0,0x63,0x80,0x67,0x0,0x6e,0x0,0x6c,0x0,0x78,0x0,0x68,0x0,
   0x64,0x0,0x66,0x0,0x63,0x0,0x67,0xc0,0x60,0x0,0x60,0x0,0x60,0x0,0x60,0x0,
   0xe0,0x0
};
static const GLUTBitmapChar ch107 = { 11, 17, -1, 0, 12, ch107data };

static const unsigned char ch108data[] = {
   0xf0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
   0xe0
};
static const GLUTBitmapChar ch108 = { 4, 17, -1, 0, 6, ch108data };

static const unsigned char ch109data[] = {
   0xf1,0xe3,0xc0,0x60,0xc1,0x80,0x60,0xc1,0x80,0x60,0xc1,0x80,0x60,0xc1,0x80,0x60,
   0xc1,0x80,0x60,0xc1,0x80,0x60,0xc1,0x80,0x60,0xc1,0x80,0x71,0xe3,0x80,0x6f,0x9f,
   0x0,0xe7,0xe,0x0
};
static const GLUTBitmapChar ch109 = { 18, 12, -1, 0, 20, ch109data };

static const unsigned char ch110data[] = {
   0xf1,0xe0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x71,0xc0,0x6f,0x80,0xe7,0x0
};
static const GLUTBitmapChar ch110 = { 11, 12, -1, 0, 13, ch110data };

static const unsigned char ch111data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1e,0x0
};
static const GLUTBitmapChar ch111 = { 10, 12, -1, 0, 12, ch111data };

static const unsigned char ch112data[] = {
   0xf0,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x6e,0x0,0x73,0x80,0x61,0x80,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x61,0x80,0x73,0x80,
   0xee,0x0
};
static const GLUTBitmapChar ch112 = { 10, 17, -1, 5, 12, ch112data };

static const unsigned char ch113data[] = {
   0x3,0xc0,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x1d,0x80,0x73,0x80,0x61,0x80,
   0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0x61,0x80,0x73,0x80,
   0x1d,0x80
};
static const GLUTBitmapChar ch113 = { 10, 17, -1, 5, 12, ch113data };

static const unsigned char ch114data[] = {
   0xf0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x76,0x6e,0xe6
};
static const GLUTBitmapChar ch114 = { 7, 12, -1, 0, 8, ch114data };

static const unsigned char ch115data[] = {
   0xf8,0xc6,0x83,0x3,0x7,0x1e,0x7c,0x70,0xe0,0xc2,0x66,0x3e
};
static const GLUTBitmapChar ch115 = { 8, 12, -1, 0, 10, ch115data };

static const unsigned char ch116data[] = {
   0x1c,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0xfe,0x70,0x30,0x10
};
static const GLUTBitmapChar ch116 = { 7, 15, 0, 0, 7, ch116data };

static const unsigned char ch117data[] = {
   0x1c,0xe0,0x3e,0xc0,0x71,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0xe1,0xc0
};
static const GLUTBitmapChar ch117 = { 11, 12, -1, 0, 13, ch117data };

static const unsigned char ch118data[] = {
   0x4,0x0,0xe,0x0,0xe,0x0,0x1a,0x0,0x19,0x0,0x19,0x0,0x31,0x0,0x30,0x80,
   0x30,0x80,0x60,0x80,0x60,0xc0,0xf1,0xe0
};
static const GLUTBitmapChar ch118 = { 11, 12, 0, 0, 11, ch118data };

static const unsigned char ch119data[] = {
   0x4,0x10,0x0,0xe,0x38,0x0,0xe,0x38,0x0,0x1a,0x28,0x0,0x1a,0x64,0x0,0x19,
   0x64,0x0,0x31,0x64,0x0,0x30,0xc2,0x0,0x30,0xc2,0x0,0x60,0xc2,0x0,0x60,0xc3,
   0x0,0xf1,0xe7,0x80
};
static const GLUTBitmapChar ch119 = { 17, 12, 0, 0, 17, ch119data };

static const unsigned char ch120data[] = {
   0xf1,0xe0,0x60,0xc0,0x21,0x80,0x33,0x80,0x1b,0x0,0xe,0x0,0xc,0x0,0x1a,0x0,
   0x39,0x0,0x31,0x80,0x60,0xc0,0xf1,0xe0
};
static const GLUTBitmapChar ch120 = { 11, 12, -1, 0, 13, ch120data };

static const unsigned char ch121data[] = {
   0xe0,0x0,0xf0,0x0,0x18,0x0,0x8,0x0,0xc,0x0,0x4,0x0,0xe,0x0,0xe,0x0,
   0x1a,0x0,0x19,0x0,0x19,0x0,0x31,0x0,0x30,0x80,0x30,0x80,0x60,0x80,0x60,0xc0,
   0xf1,0xe0
};
static const GLUTBitmapChar ch121 = { 11, 17, 0, 5, 11, ch121data };

static const unsigned char ch122data[] = {
   0xff,0xc3,0x61,0x70,0x30,0x38,0x18,0x1c,0xe,0x86,0xc3,0xff
};
static const GLUTBitmapChar ch122 = { 8, 12, -1, 0, 10, ch122data };

static const unsigned char ch123data[] = {
   0x7,0xc,0x18,0x18,0x18,0x18,0x18,0x18,0x10,0x30,0x20,0xc0,0x20,0x30,0x10,0x18,
   0x18,0x18,0x18,0x18,0xc,0x7
};
static const GLUTBitmapChar ch123 = { 8, 22, -1, 5, 10, ch123data };

static const unsigned char ch124data[] = {
   0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0
};
static const GLUTBitmapChar ch124 = { 2, 17, -2, 0, 6, ch124data };

static const unsigned char ch125data[] = {
   0xe0,0x30,0x18,0x18,0x18,0x18,0x18,0x18,0x8,0xc,0x4,0x3,0x4,0xc,0x8,0x18,
   0x18,0x18,0x18,0x18,0x30,0xe0
};
static const GLUTBitmapChar ch125 = { 8, 22, -1, 5, 10, ch125data };

static const unsigned char ch126data[] = {
   0x83,0x80,0xc7,0xc0,0x7c,0x60,0x38,0x20
};
static const GLUTBitmapChar ch126 = { 11, 4, -1, -5, 13, ch126data };

static const unsigned char ch160data[] = {
   0x0
};
static const GLUTBitmapChar ch160 = { 1, 1, 0, 0, 6, ch160data };

static const unsigned char ch161data[] = {
   0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0xc0,
   0xc0
};
static const GLUTBitmapChar ch161 = { 2, 17, -4, 5, 8, ch161data };

static const unsigned char ch162data[] = {
   0x40,0x0,0x40,0x0,0x3e,0x0,0x7f,0x0,0x70,0x80,0xd0,0x0,0xc8,0x0,0xc8,0x0,
   0xc8,0x0,0xc4,0x0,0xc4,0x0,0x43,0x80,0x63,0x80,0x1f,0x0,0x1,0x0,0x1,0x0
};
static const GLUTBitmapChar ch162 = { 9, 16, -1, 2, 12, ch162data };

static const unsigned char ch163data[] = {
   0xe7,0x80,0xbe,0xc0,0x78,0x40,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,
   0x30,0x0,0xfc,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x31,0x80,0x19,0x80,
   0xf,0x0
};
static const GLUTBitmapChar ch163 = { 10, 17, -1, 0, 12, ch163data };

static const unsigned char ch164data[] = {
   0xc0,0x60,0xee,0xe0,0x7f,0xc0,0x31,0x80,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x31,0x80,0x7f,0xc0,0xee,0xe0,0xc0,0x60
};
static const GLUTBitmapChar ch164 = { 11, 12, -1, -3, 13, ch164data };

static const unsigned char ch165data[] = {
   0xf,0xc0,0x3,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0x1f,0xe0,0x3,0x0,0x1f,0xe0,
   0x3,0x0,0x7,0x80,0xc,0x80,0xc,0xc0,0x18,0x40,0x18,0x60,0x30,0x20,0x70,0x30,
   0xf8,0x7c
};
static const GLUTBitmapChar ch165 = { 14, 17, 0, 0, 14, ch165data };

static const unsigned char ch166data[] = {
   0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0
};
static const GLUTBitmapChar ch166 = { 2, 17, -2, 0, 6, ch166data };

static const unsigned char ch167data[] = {
   0x38,0x64,0x62,0x6,0xe,0x1c,0x38,0x74,0xe2,0xc3,0x83,0x87,0x4e,0x3c,0x38,0x70,
   0x60,0x46,0x26,0x1c
};
static const GLUTBitmapChar ch167 = { 8, 20, -2, 2, 12, ch167data };

static const unsigned char ch168data[] = {
   0xcc,0xcc
};
static const GLUTBitmapChar ch168 = { 6, 2, -1, -14, 8, ch168data };

static const unsigned char ch169data[] = {
   0x7,0xf0,0x0,0x1c,0x1c,0x0,0x30,0x6,0x0,0x61,0xc3,0x0,0x47,0x71,0x0,0xc4,
   0x19,0x80,0x8c,0x0,0x80,0x88,0x0,0x80,0x88,0x0,0x80,0x88,0x0,0x80,0x8c,0x0,
   0x80,0xc4,0x19,0x80,0x47,0x31,0x0,0x61,0xe3,0x0,0x30,0x6,0x0,0x1c,0x1c,0x0,
   0x7,0xf0,0x0
};
static const GLUTBitmapChar ch169 = { 17, 17, -1, 0, 19, ch169data };

static const unsigned char ch170data[] = {
   0x7e,0x0,0x76,0xcc,0xcc,0x7c,0xc,0xcc,0x78
};
static const GLUTBitmapChar ch170 = { 7, 9, 0, -8, 8, ch170data };

static const unsigned char ch171data[] = {
   0x8,0x80,0x19,0x80,0x33,0x0,0x66,0x0,0xcc,0x0,0xcc,0x0,0x66,0x0,0x33,0x0,
   0x19,0x80,0x8,0x80
};
static const GLUTBitmapChar ch171 = { 9, 10, -2, -1, 13, ch171data };

static const unsigned char ch172data[] = {
   0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x30,0xff,0xf0,0xff,0xf0
};
static const GLUTBitmapChar ch172 = { 12, 7, -1, -3, 14, ch172data };

static const unsigned char ch173data[] = {
   0xfe,0xfe
};
static const GLUTBitmapChar ch173 = { 7, 2, -1, -5, 9, ch173data };

static const unsigned char ch174data[] = {
   0x7,0xf0,0x0,0x1c,0x1c,0x0,0x30,0x6,0x0,0x60,0x3,0x0,0x47,0x19,0x0,0xc2,
   0x31,0x80,0x82,0x20,0x80,0x82,0x40,0x80,0x83,0xe0,0x80,0x82,0x30,0x80,0x82,0x10,
   0x80,0xc2,0x11,0x80,0x42,0x31,0x0,0x67,0xe3,0x0,0x30,0x6,0x0,0x1c,0x1c,0x0,
   0x7,0xf0,0x0
};
static const GLUTBitmapChar ch174 = { 17, 17, -1, 0, 19, ch174data };

static const unsigned char ch175data[] = {
   0xfc,0xfc
};
static const GLUTBitmapChar ch175 = { 6, 2, -1, -14, 8, ch175data };

static const unsigned char ch176data[] = {
   0x38,0x44,0x82,0x82,0x82,0x44,0x38
};
static const GLUTBitmapChar ch176 = { 7, 7, -1, -10, 9, ch176data };

static const unsigned char ch177data[] = {
   0xff,0xf0,0xff,0xf0,0x0,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,
   0xff,0xf0,0xff,0xf0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0,0x6,0x0
};
static const GLUTBitmapChar ch177 = { 12, 15, -1, 0, 14, ch177data };

static const unsigned char ch178data[] = {
   0xfc,0x44,0x20,0x30,0x10,0x8,0xc,0x8c,0x4c,0x38
};
static const GLUTBitmapChar ch178 = { 6, 10, 0, -7, 7, ch178data };

static const unsigned char ch179data[] = {
   0x70,0x88,0x8c,0xc,0x8,0x30,0x8,0x8c,0x4c,0x38
};
static const GLUTBitmapChar ch179 = { 6, 10, 0, -7, 7, ch179data };

static const unsigned char ch180data[] = {
   0x80,0x60,0x38,0x18
};
static const GLUTBitmapChar ch180 = { 5, 4, -2, -13, 8, ch180data };

static const unsigned char ch181data[] = {
   0x40,0x0,0xe0,0x0,0xc0,0x0,0x40,0x0,0x40,0x0,0x5c,0xe0,0x7e,0xc0,0x71,0xc0,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0xe1,0xc0
};
static const GLUTBitmapChar ch181 = { 11, 17, -1, 5, 13, ch181data };

static const unsigned char ch182data[] = {
   0x9,0x0,0x9,0x0,0x9,0x0,0x9,0x0,0x9,0x0,0x9,0x0,0x9,0x0,0x9,0x0,
   0x9,0x0,0x9,0x0,0x9,0x0,0x19,0x0,0x39,0x0,0x79,0x0,0x79,0x0,0xf9,0x0,
   0xf9,0x0,0xf9,0x0,0x79,0x0,0x79,0x0,0x39,0x0,0x1f,0x80
};
static const GLUTBitmapChar ch182 = { 9, 22, -1, 5, 11, ch182data };

static const unsigned char ch183data[] = {
   0xc0,0xc0
};
static const GLUTBitmapChar ch183 = { 2, 2, -2, -6, 6, ch183data };

static const unsigned char ch184data[] = {
   0x78,0xcc,0xc,0x3c,0x30,0x10
};
static const GLUTBitmapChar ch184 = { 6, 6, -1, 6, 8, ch184data };

static const unsigned char ch185data[] = {
   0xf8,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x60,0x20
};
static const GLUTBitmapChar ch185 = { 5, 10, -1, -7, 7, ch185data };

static const unsigned char ch186data[] = {
   0xfc,0x0,0x78,0xcc,0xcc,0xcc,0xcc,0xcc,0x78
};
static const GLUTBitmapChar ch186 = { 6, 9, -1, -8, 8, ch186data };

static const unsigned char ch187data[] = {
   0x88,0x0,0xcc,0x0,0x66,0x0,0x33,0x0,0x19,0x80,0x19,0x80,0x33,0x0,0x66,0x0,
   0xcc,0x0,0x88,0x0
};
static const GLUTBitmapChar ch187 = { 9, 10, -2, -1, 12, ch187data };

static const unsigned char ch188data[] = {
   0x30,0x4,0x10,0x4,0x18,0xff,0x8,0x44,0xc,0x64,0x6,0x24,0x2,0x14,0xfb,0x1c,
   0x21,0xc,0x21,0x84,0x20,0xc0,0x20,0x40,0x20,0x60,0x20,0x20,0xa0,0x30,0x60,0x18,
   0x20,0x8
};
static const GLUTBitmapChar ch188 = { 16, 17, -1, 0, 18, ch188data };

static const unsigned char ch189data[] = {
   0x30,0x7e,0x10,0x22,0x18,0x10,0x8,0x18,0xc,0x8,0x6,0x4,0x2,0x6,0xfb,0x46,
   0x21,0x26,0x21,0x9c,0x20,0xc0,0x20,0x40,0x20,0x60,0x20,0x20,0xa0,0x30,0x60,0x18,
   0x20,0x8
};
static const GLUTBitmapChar ch189 = { 15, 17, -1, 0, 18, ch189data };

static const unsigned char ch190data[] = {
   0x18,0x2,0x0,0x8,0x2,0x0,0xc,0x7f,0x80,0x4,0x22,0x0,0x6,0x32,0x0,0x3,
   0x12,0x0,0x1,0xa,0x0,0x71,0x8e,0x0,0x88,0x86,0x0,0x8c,0xc2,0x0,0xc,0x60,
   0x0,0x8,0x20,0x0,0x30,0x30,0x0,0x8,0x10,0x0,0x8c,0x18,0x0,0x4c,0xc,0x0,
   0x38,0x4,0x0
};
static const GLUTBitmapChar ch190 = { 17, 17, 0, 0, 18, ch190data };

static const unsigned char ch191data[] = {
   0x3e,0x63,0xc1,0xc3,0xc3,0xe0,0x70,0x30,0x38,0x18,0x18,0x8,0x8,0x0,0x0,0xc,
   0xc
};
static const GLUTBitmapChar ch191 = { 8, 17, -1, 5, 11, ch191data };

static const unsigned char ch192data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0xc0,0x0,0x3,0x80,0x0,0x3,
   0x0,0x0
};
static const GLUTBitmapChar ch192 = { 17, 22, 0, 0, 17, ch192data };

static const unsigned char ch193data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0x0,0x0,0x70,0x0,0x0,
   0x30,0x0
};
static const GLUTBitmapChar ch193 = { 17, 22, 0, 0, 17, ch193data };

static const unsigned char ch194data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0,0x0,0x0,0x0,0x8,0x10,0x0,0x6,0x60,0x0,0x3,0xc0,0x0,0x1,
   0x80,0x0
};
static const GLUTBitmapChar ch194 = { 17, 22, 0, 0, 17, ch194data };

static const unsigned char ch195data[] = {
   0xfc,0x1f,0x80,0x30,0x7,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xe0,0x0,0x3,0x90,0x0
};
static const GLUTBitmapChar ch195 = { 17, 21, 0, 0, 17, ch195data };

static const unsigned char ch196data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x30,0x0,0x6,0x30,0x0
};
static const GLUTBitmapChar ch196 = { 17, 21, 0, 0, 17, ch196data };

static const unsigned char ch197data[] = {
   0xfc,0x1f,0x80,0x30,0x6,0x0,0x10,0x6,0x0,0x10,0xc,0x0,0x18,0xc,0x0,0x8,
   0xc,0x0,0xf,0xf8,0x0,0xc,0x18,0x0,0x4,0x18,0x0,0x4,0x30,0x0,0x6,0x30,
   0x0,0x2,0x30,0x0,0x2,0x60,0x0,0x1,0x60,0x0,0x1,0xc0,0x0,0x1,0xc0,0x0,
   0x0,0x80,0x0,0x1,0xc0,0x0,0x2,0x20,0x0,0x2,0x20,0x0,0x1,0xc0,0x0
};
static const GLUTBitmapChar ch197 = { 17, 21, 0, 0, 17, ch197data };

static const unsigned char ch198data[] = {
   0xf9,0xff,0xf0,0x30,0x60,0x30,0x10,0x60,0x10,0x10,0x60,0x10,0x18,0x60,0x0,0x8,
   0x60,0x0,0xf,0xe0,0x80,0xc,0x60,0x80,0x4,0x7f,0x80,0x4,0x60,0x80,0x6,0x60,
   0x80,0x2,0x60,0x0,0x2,0x60,0x0,0x1,0x60,0x20,0x1,0x60,0x20,0x1,0xe0,0x60,
   0x3,0xff,0xe0
};
static const GLUTBitmapChar ch198 = { 20, 17, 0, 0, 21, ch198data };

static const unsigned char ch199data[] = {
   0x7,0x80,0xc,0xc0,0x0,0xc0,0x3,0xc0,0x3,0x0,0x1,0x0,0x7,0xe0,0x1e,0x38,
   0x38,0x8,0x60,0x4,0x60,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,
   0xc0,0x0,0xc0,0x0,0x60,0x4,0x60,0x4,0x38,0xc,0x1c,0x3c,0x7,0xe4
};
static const GLUTBitmapChar ch199 = { 14, 23, -1, 6, 16, ch199data };

static const unsigned char ch200data[] = {
   0xff,0xf8,0x30,0x18,0x30,0x8,0x30,0x8,0x30,0x0,0x30,0x0,0x30,0x40,0x30,0x40,
   0x3f,0xc0,0x30,0x40,0x30,0x40,0x30,0x0,0x30,0x0,0x30,0x10,0x30,0x10,0x30,0x30,
   0xff,0xf0,0x0,0x0,0x1,0x0,0x6,0x0,0x1c,0x0,0x18,0x0
};
static const GLUTBitmapChar ch200 = { 13, 22, -1, 0, 15, ch200data };

static const unsigned char ch201data[] = {
   0xff,0xf8,0x30,0x18,0x30,0x8,0x30,0x8,0x30,0x0,0x30,0x0,0x30,0x40,0x30,0x40,
   0x3f,0xc0,0x30,0x40,0x30,0x40,0x30,0x0,0x30,0x0,0x30,0x10,0x30,0x10,0x30,0x30,
   0xff,0xf0,0x0,0x0,0x4,0x0,0x3,0x0,0x1,0xc0,0x0,0xc0
};
static const GLUTBitmapChar ch201 = { 13, 22, -1, 0, 15, ch201data };

static const unsigned char ch202data[] = {
   0xff,0xf8,0x30,0x18,0x30,0x8,0x30,0x8,0x30,0x0,0x30,0x0,0x30,0x40,0x30,0x40,
   0x3f,0xc0,0x30,0x40,0x30,0x40,0x30,0x0,0x30,0x0,0x30,0x10,0x30,0x10,0x30,0x30,
   0xff,0xf0,0x0,0x0,0x10,0x20,0xc,0xc0,0x7,0x80,0x3,0x0
};
static const GLUTBitmapChar ch202 = { 13, 22, -1, 0, 15, ch202data };

static const unsigned char ch203data[] = {
   0xff,0xf8,0x30,0x18,0x30,0x8,0x30,0x8,0x30,0x0,0x30,0x0,0x30,0x40,0x30,0x40,
   0x3f,0xc0,0x30,0x40,0x30,0x40,0x30,0x0,0x30,0x0,0x30,0x10,0x30,0x10,0x30,0x30,
   0xff,0xf0,0x0,0x0,0x0,0x0,0x19,0x80,0x19,0x80
};
static const GLUTBitmapChar ch203 = { 13, 21, -1, 0, 15, ch203data };

static const unsigned char ch204data[] = {
   0xfc,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
   0xfc,0x0,0x8,0x30,0xe0,0xc0
};
static const GLUTBitmapChar ch204 = { 6, 22, -1, 0, 8, ch204data };

static const unsigned char ch205data[] = {
   0xfc,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
   0xfc,0x0,0x40,0x30,0x1c,0xc
};
static const GLUTBitmapChar ch205 = { 6, 22, -1, 0, 8, ch205data };

static const unsigned char ch206data[] = {
   0x7e,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
   0x7e,0x0,0x81,0x66,0x3c,0x18
};
static const GLUTBitmapChar ch206 = { 8, 22, -1, 0, 8, ch206data };

static const unsigned char ch207data[] = {
   0xfc,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
   0xfc,0x0,0x0,0xcc,0xcc
};
static const GLUTBitmapChar ch207 = { 6, 21, -1, 0, 8, ch207data };

static const unsigned char ch208data[] = {
   0x7f,0xe0,0x18,0x38,0x18,0x1c,0x18,0x6,0x18,0x6,0x18,0x3,0x18,0x3,0x18,0x3,
   0xff,0x3,0x18,0x3,0x18,0x3,0x18,0x3,0x18,0x6,0x18,0x6,0x18,0x1c,0x18,0x38,
   0x7f,0xe0
};
static const GLUTBitmapChar ch208 = { 16, 17, 0, 0, 17, ch208data };

static const unsigned char ch209data[] = {
   0xf8,0xc,0x20,0x1c,0x20,0x1c,0x20,0x34,0x20,0x64,0x20,0x64,0x20,0xc4,0x21,0x84,
   0x21,0x84,0x23,0x4,0x26,0x4,0x26,0x4,0x2c,0x4,0x38,0x4,0x38,0x4,0x30,0x4,
   0xf0,0x1f,0x0,0x0,0x0,0x0,0x4,0xe0,0x3,0x90
};
static const GLUTBitmapChar ch209 = { 16, 21, -1, 0, 18, ch209data };

static const unsigned char ch210data[] = {
   0x7,0xe0,0x1c,0x38,0x38,0x1c,0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,
   0x7,0xe0,0x0,0x0,0x0,0x40,0x1,0x80,0x7,0x0,0x6,0x0
};
static const GLUTBitmapChar ch210 = { 16, 22, -1, 0, 18, ch210data };

static const unsigned char ch211data[] = {
   0x7,0xe0,0x1c,0x38,0x38,0x1c,0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,
   0x7,0xe0,0x0,0x0,0x1,0x0,0x0,0xc0,0x0,0x70,0x0,0x30
};
static const GLUTBitmapChar ch211 = { 16, 22, -1, 0, 18, ch211data };

static const unsigned char ch212data[] = {
   0x7,0xe0,0x1c,0x38,0x38,0x1c,0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,
   0x7,0xe0,0x0,0x0,0x8,0x10,0x6,0x60,0x3,0xc0,0x1,0x80
};
static const GLUTBitmapChar ch212 = { 16, 22, -1, 0, 18, ch212data };

static const unsigned char ch213data[] = {
   0x7,0xe0,0x1c,0x38,0x38,0x1c,0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,
   0x7,0xe0,0x0,0x0,0x0,0x0,0x4,0xe0,0x3,0x90
};
static const GLUTBitmapChar ch213 = { 16, 21, -1, 0, 18, ch213data };

static const unsigned char ch214data[] = {
   0x7,0xe0,0x1c,0x38,0x38,0x1c,0x60,0x6,0x60,0x6,0xc0,0x3,0xc0,0x3,0xc0,0x3,
   0xc0,0x3,0xc0,0x3,0xc0,0x3,0xc0,0x3,0x60,0x6,0x60,0x6,0x38,0x1c,0x1c,0x38,
   0x7,0xe0,0x0,0x0,0x0,0x0,0x6,0x60,0x6,0x60
};
static const GLUTBitmapChar ch214 = { 16, 21, -1, 0, 18, ch214data };

static const unsigned char ch215data[] = {
   0x80,0x40,0xc0,0xc0,0x61,0x80,0x33,0x0,0x1e,0x0,0xc,0x0,0x1e,0x0,0x33,0x0,
   0x61,0x80,0xc0,0xc0,0x80,0x40
};
static const GLUTBitmapChar ch215 = { 10, 11, -2, -1, 14, ch215data };

static const unsigned char ch216data[] = {
   0x20,0x0,0x27,0xe0,0x1c,0x38,0x38,0x1c,0x68,0x6,0x64,0x6,0xc2,0x3,0xc2,0x3,
   0xc1,0x3,0xc1,0x3,0xc0,0x83,0xc0,0x83,0xc0,0x43,0x60,0x46,0x60,0x26,0x38,0x1c,
   0x1c,0x38,0x7,0xe4,0x0,0x4
};
static const GLUTBitmapChar ch216 = { 16, 19, -1, 1, 18, ch216data };

static const unsigned char ch217data[] = {
   0x7,0xe0,0x1c,0x30,0x18,0x8,0x30,0x8,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0xfc,0x1f,0x0,0x0,0x0,0x40,0x1,0x80,0x7,0x0,0x6,0x0
};
static const GLUTBitmapChar ch217 = { 16, 22, -1, 0, 18, ch217data };

static const unsigned char ch218data[] = {
   0x7,0xe0,0x1c,0x30,0x18,0x8,0x30,0x8,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0xfc,0x1f,0x0,0x0,0x1,0x0,0x0,0xc0,0x0,0x70,0x0,0x30
};
static const GLUTBitmapChar ch218 = { 16, 22, -1, 0, 18, ch218data };

static const unsigned char ch219data[] = {
   0x7,0xe0,0x1c,0x30,0x18,0x8,0x30,0x8,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0xfc,0x1f,0x0,0x0,0x8,0x10,0x6,0x60,0x3,0xc0,0x1,0x80
};
static const GLUTBitmapChar ch219 = { 16, 22, -1, 0, 18, ch219data };

static const unsigned char ch220data[] = {
   0x7,0xe0,0x1c,0x30,0x18,0x8,0x30,0x8,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,0x30,0x4,
   0xfc,0x1f,0x0,0x0,0x0,0x0,0x6,0x30,0x6,0x30
};
static const GLUTBitmapChar ch220 = { 16, 21, -1, 0, 18, ch220data };

static const unsigned char ch221data[] = {
   0x7,0xe0,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x1,0x80,0x3,0xc0,
   0x3,0x40,0x6,0x60,0x6,0x20,0xc,0x30,0x1c,0x10,0x18,0x18,0x38,0x8,0x30,0xc,
   0xfc,0x3f,0x0,0x0,0x1,0x0,0x0,0xc0,0x0,0x70,0x0,0x30
};
static const GLUTBitmapChar ch221 = { 16, 22, 0, 0, 16, ch221data };

static const unsigned char ch222data[] = {
   0xfc,0x0,0x30,0x0,0x30,0x0,0x30,0x0,0x3f,0xc0,0x30,0x70,0x30,0x30,0x30,0x18,
   0x30,0x18,0x30,0x18,0x30,0x30,0x30,0x70,0x3f,0xc0,0x30,0x0,0x30,0x0,0x30,0x0,
   0xfc,0x0
};
static const GLUTBitmapChar ch222 = { 13, 17, -1, 0, 15, ch222data };

static const unsigned char ch223data[] = {
   0xe7,0x0,0x6c,0x80,0x6c,0xc0,0x60,0xc0,0x60,0xc0,0x61,0xc0,0x61,0x80,0x63,0x80,
   0x67,0x0,0x6c,0x0,0x63,0x0,0x61,0x80,0x61,0x80,0x61,0x80,0x61,0x80,0x33,0x0,
   0x1e,0x0
};
static const GLUTBitmapChar ch223 = { 10, 17, -1, 0, 12, ch223data };

static const unsigned char ch224data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0,0x0,0x0,0x4,0x0,0x18,0x0,0x70,0x0,
   0x60,0x0
};
static const GLUTBitmapChar ch224 = { 9, 17, -1, 0, 11, ch224data };

static const unsigned char ch225data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0,0x0,0x0,0x10,0x0,0xc,0x0,0x7,0x0,
   0x3,0x0
};
static const GLUTBitmapChar ch225 = { 9, 17, -1, 0, 11, ch225data };

static const unsigned char ch226data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0,0x0,0x0,0x42,0x0,0x24,0x0,0x3c,0x0,
   0x18,0x0
};
static const GLUTBitmapChar ch226 = { 9, 17, -1, 0, 11, ch226data };

static const unsigned char ch227data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x5c,0x0,0x3a,0x0
};
static const GLUTBitmapChar ch227 = { 9, 16, -1, 0, 11, ch227data };

static const unsigned char ch228data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x66,0x0,0x66,0x0
};
static const GLUTBitmapChar ch228 = { 9, 16, -1, 0, 11, ch228data };

static const unsigned char ch229data[] = {
   0x71,0x80,0xfb,0x0,0xc7,0x0,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0x0,
   0x3,0x0,0x63,0x0,0x67,0x0,0x3e,0x0,0x0,0x0,0x1c,0x0,0x22,0x0,0x22,0x0,
   0x1c,0x0
};
static const GLUTBitmapChar ch229 = { 9, 17, -1, 0, 11, ch229data };

static const unsigned char ch230data[] = {
   0x70,0xf0,0xfb,0xf8,0xc7,0x84,0xc3,0x0,0xc3,0x0,0x63,0x0,0x3b,0x0,0xf,0xfc,
   0x3,0xc,0x63,0xc,0x67,0x98,0x3c,0xf0
};
static const GLUTBitmapChar ch230 = { 14, 12, -1, 0, 16, ch230data };

static const unsigned char ch231data[] = {
   0x3c,0x0,0x66,0x0,0x6,0x0,0x1e,0x0,0x18,0x0,0x8,0x0,0x1e,0x0,0x7f,0x0,
   0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0x41,0x80,
   0x63,0x80,0x1f,0x0
};
static const GLUTBitmapChar ch231 = { 9, 18, -1, 6, 11, ch231data };

static const unsigned char ch232data[] = {
   0x1e,0x0,0x7f,0x0,0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xff,0x80,
   0xc1,0x80,0x41,0x80,0x63,0x0,0x1e,0x0,0x0,0x0,0x4,0x0,0x18,0x0,0x70,0x0,
   0x60,0x0
};
static const GLUTBitmapChar ch232 = { 9, 17, -1, 0, 11, ch232data };

static const unsigned char ch233data[] = {
   0x1e,0x0,0x7f,0x0,0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xff,0x80,
   0xc1,0x80,0x41,0x80,0x63,0x0,0x1e,0x0,0x0,0x0,0x10,0x0,0xc,0x0,0x7,0x0,
   0x3,0x0
};
static const GLUTBitmapChar ch233 = { 9, 17, -1, 0, 11, ch233data };

static const unsigned char ch234data[] = {
   0x1e,0x0,0x7f,0x0,0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xff,0x80,
   0xc1,0x80,0x41,0x80,0x63,0x0,0x1e,0x0,0x0,0x0,0x21,0x0,0x12,0x0,0x1e,0x0,
   0xc,0x0
};
static const GLUTBitmapChar ch234 = { 9, 17, -1, 0, 11, ch234data };

static const unsigned char ch235data[] = {
   0x1e,0x0,0x7f,0x0,0x70,0x80,0xe0,0x0,0xc0,0x0,0xc0,0x0,0xc0,0x0,0xff,0x80,
   0xc1,0x80,0x41,0x80,0x63,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x33,0x0,0x33,0x0
};
static const GLUTBitmapChar ch235 = { 9, 16, -1, 0, 11, ch235data };

static const unsigned char ch236data[] = {
   0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x70,0x0,0x8,0x30,0xe0,
   0xc0
};
static const GLUTBitmapChar ch236 = { 5, 17, 0, 0, 6, ch236data };

static const unsigned char ch237data[] = {
   0xf0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0xe0,0x0,0x80,0x60,0x38,
   0x18
};
static const GLUTBitmapChar ch237 = { 5, 17, -1, 0, 6, ch237data };

static const unsigned char ch238data[] = {
   0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x70,0x0,0x84,0x48,0x78,
   0x30
};
static const GLUTBitmapChar ch238 = { 6, 17, 0, 0, 6, ch238data };

static const unsigned char ch239data[] = {
   0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x70,0x0,0x0,0xcc,0xcc
};
static const GLUTBitmapChar ch239 = { 6, 16, 0, 0, 6, ch239data };

static const unsigned char ch240data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1f,0x0,0xc6,0x0,0x3c,0x0,0x1e,0x0,0x71,0x80,
   0xc0,0x0
};
static const GLUTBitmapChar ch240 = { 10, 17, -1, 0, 12, ch240data };

static const unsigned char ch241data[] = {
   0xf1,0xe0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x71,0xc0,0x6f,0x80,0xe7,0x0,0x0,0x0,0x0,0x0,0x27,0x0,0x1c,0x80
};
static const GLUTBitmapChar ch241 = { 11, 16, -1, 0, 13, ch241data };

static const unsigned char ch242data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1e,0x0,0x0,0x0,0x2,0x0,0xc,0x0,0x38,0x0,
   0x30,0x0
};
static const GLUTBitmapChar ch242 = { 10, 17, -1, 0, 12, ch242data };

static const unsigned char ch243data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1e,0x0,0x0,0x0,0x8,0x0,0x6,0x0,0x3,0x80,
   0x1,0x80
};
static const GLUTBitmapChar ch243 = { 10, 17, -1, 0, 12, ch243data };

static const unsigned char ch244data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1e,0x0,0x0,0x0,0x21,0x0,0x12,0x0,0x1e,0x0,
   0xc,0x0
};
static const GLUTBitmapChar ch244 = { 10, 17, -1, 0, 12, ch244data };

static const unsigned char ch245data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1e,0x0,0x0,0x0,0x0,0x0,0x27,0x0,0x1c,0x80
};
static const GLUTBitmapChar ch245 = { 10, 16, -1, 0, 12, ch245data };

static const unsigned char ch246data[] = {
   0x1e,0x0,0x73,0x80,0x61,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
   0xc0,0xc0,0x61,0x80,0x73,0x80,0x1e,0x0,0x0,0x0,0x0,0x0,0x33,0x0,0x33,0x0
};
static const GLUTBitmapChar ch246 = { 10, 16, -1, 0, 12, ch246data };

static const unsigned char ch247data[] = {
   0x6,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0xff,0xf0,0x0,0x0,0x0,0x0,
   0x6,0x0,0x6,0x0
};
static const GLUTBitmapChar ch247 = { 12, 10, -1, -2, 14, ch247data };

static const unsigned char ch248data[] = {
   0xc0,0x0,0xde,0x0,0x73,0x80,0x71,0x80,0xd0,0xc0,0xd8,0xc0,0xc8,0xc0,0xcc,0xc0,
   0xc4,0xc0,0xc6,0xc0,0x63,0x80,0x73,0x80,0x1e,0xc0,0x0,0xc0
};
static const GLUTBitmapChar ch248 = { 10, 14, -1, 1, 12, ch248data };

static const unsigned char ch249data[] = {
   0x1c,0xe0,0x3e,0xc0,0x71,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0xe1,0xc0,0x0,0x0,0x2,0x0,0xc,0x0,0x38,0x0,
   0x30,0x0
};
static const GLUTBitmapChar ch249 = { 11, 17, -1, 0, 13, ch249data };

static const unsigned char ch250data[] = {
   0x1c,0xe0,0x3e,0xc0,0x71,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0xe1,0xc0,0x0,0x0,0x8,0x0,0x6,0x0,0x3,0x80,
   0x1,0x80
};
static const GLUTBitmapChar ch250 = { 11, 17, -1, 0, 13, ch250data };

static const unsigned char ch251data[] = {
   0x1c,0xe0,0x3e,0xc0,0x71,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0xe1,0xc0,0x0,0x0,0x21,0x0,0x12,0x0,0x1e,0x0,
   0xc,0x0
};
static const GLUTBitmapChar ch251 = { 11, 17, -1, 0, 13, ch251data };

static const unsigned char ch252data[] = {
   0x1c,0xe0,0x3e,0xc0,0x71,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0xe1,0xc0,0x0,0x0,0x0,0x0,0x33,0x0,0x33,0x0
};
static const GLUTBitmapChar ch252 = { 11, 16, -1, 0, 13, ch252data };

static const unsigned char ch253data[] = {
   0xe0,0x0,0xf0,0x0,0x18,0x0,0x8,0x0,0xc,0x0,0x4,0x0,0xe,0x0,0xe,0x0,
   0x1a,0x0,0x19,0x0,0x19,0x0,0x31,0x0,0x30,0x80,0x30,0x80,0x60,0x80,0x60,0xc0,
   0xf1,0xe0,0x0,0x0,0x8,0x0,0x6,0x0,0x3,0x80,0x1,0x80
};
static const GLUTBitmapChar ch253 = { 11, 22, 0, 5, 11, ch253data };

static const unsigned char ch254data[] = {
   0xf0,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x6e,0x0,0x73,0x80,0x61,0x80,
   0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x60,0xc0,0x61,0x80,0x73,0x80,
   0x6e,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0x60,0x0,0xe0,0x0
};
static const GLUTBitmapChar ch254 = { 10, 22, -1, 5, 12, ch254data };

static const unsigned char ch255data[] = {
   0xe0,0x0,0xf0,0x0,0x18,0x0,0x8,0x0,0xc,0x0,0x4,0x0,0xe,0x0,0xe,0x0,
   0x1a,0x0,0x19,0x0,0x19,0x0,0x31,0x0,0x30,0x80,0x30,0x80,0x60,0x80,0x60,0xc0,
   0xf1,0xe0,0x0,0x0,0x0,0x0,0x33,0x0,0x33,0x0
};
static const GLUTBitmapChar ch255 = { 11, 21, 0, 5, 11, ch255data };


static const GLUTBitmapChar *chars[] = {
   0, 0, 0, 0, 0, 0, 0, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   &ch32, &ch33, &ch34, &ch35, &ch36, &ch37, &ch38, &ch39, 
   &ch40, &ch41, &ch42, &ch43, &ch44, &ch45, &ch46, &ch47, 
   &ch48, &ch49, &ch50, &ch51, &ch52, &ch53, &ch54, &ch55, 
   &ch56, &ch57, &ch58, &ch59, &ch60, &ch61, &ch62, &ch63, 
   &ch64, &ch65, &ch66, &ch67, &ch68, &ch69, &ch70, &ch71, 
   &ch72, &ch73, &ch74, &ch75, &ch76, &ch77, &ch78, &ch79, 
   &ch80, &ch81, &ch82, &ch83, &ch84, &ch85, &ch86, &ch87, 
   &ch88, &ch89, &ch90, &ch91, &ch92, &ch93, &ch94, &ch95, 
   &ch96, &ch97, &ch98, &ch99, &ch100, &ch101, &ch102, &ch103, 
   &ch104, &ch105, &ch106, &ch107, &ch108, &ch109, &ch110, &ch111, 
   &ch112, &ch113, &ch114, &ch115, &ch116, &ch117, &ch118, &ch119, 
   &ch120, &ch121, &ch122, &ch123, &ch124, &ch125, &ch126, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   0, 0, 0, 0, 0, 0, 0, 0, 
   &ch160, &ch161, &ch162, &ch163, &ch164, &ch165, &ch166, &ch167, 
   &ch168, &ch169, &ch170, &ch171, &ch172, &ch173, &ch174, &ch175, 
   &ch176, &ch177, &ch178, &ch179, &ch180, &ch181, &ch182, &ch183, 
   &ch184, &ch185, &ch186, &ch187, &ch188, &ch189, &ch190, &ch191, 
   &ch192, &ch193, &ch194, &ch195, &ch196, &ch197, &ch198, &ch199, 
   &ch200, &ch201, &ch202, &ch203, &ch204, &ch205, &ch206, &ch207, 
   &ch208, &ch209, &ch210, &ch211, &ch212, &ch213, &ch214, &ch215, 
   &ch216, &ch217, &ch218, &ch219, &ch220, &ch221, &ch222, &ch223, 
   &ch224, &ch225, &ch226, &ch227, &ch228, &ch229, &ch230, &ch231, 
   &ch232, &ch233, &ch234, &ch235, &ch236, &ch237, &ch238, &ch239, 
   &ch240, &ch241, &ch242, &ch243, &ch244, &ch245, &ch246, &ch247, 
   &ch248, &ch249, &ch250, &ch251, &ch252, &ch253, &ch254, &ch255
};

const GLUTBitmapFont glutBitmapTimesRoman24 = {
   "-Adobe-Times-Medium-R-Normal--24-240-75-75-P-124-ISO8859-1",
   28, 256, chars
};