-
Notifications
You must be signed in to change notification settings - Fork 0
/
vera.cpp
8276 lines (8264 loc) · 574 KB
/
vera.cpp
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
/* C source created by blob2c from input file ../Vera.ttf */
/*
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (“Fonts”) and associated documentation files (the “Font Software”), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words “Bitstream” or the word “Vera”.
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the “Bitstream Vera” names.
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
*/
unsigned char _Vera_ttf[] = {
/* 0 */ 0x00,0x01,0x00,0x00,0x00,0x11,0x01,0x00, /* ........ */
/* 8 */ 0x00,0x04,0x00,0x10,0x4f,0x53,0x2f,0x32, /* ....OS/2 */
/* 16 */ 0xb4,0x5f,0xf4,0x63,0x00,0x00,0xeb,0x70, /* ._.c...p */
/* 24 */ 0x00,0x00,0x00,0x56,0x50,0x43,0x4c,0x54, /* ...VPCLT */
/* 32 */ 0xd1,0x8a,0x5e,0x97,0x00,0x00,0xeb,0xc8, /* ..^..... */
/* 40 */ 0x00,0x00,0x00,0x36,0x63,0x6d,0x61,0x70, /* ...6cmap */
/* 48 */ 0xa4,0xc3,0xe8,0xa0,0x00,0x00,0xb1,0x6c, /* .......l */
/* 56 */ 0x00,0x00,0x03,0x58,0x63,0x76,0x74,0x20, /* ...Xcvt */
/* 64 */ 0xff,0xd3,0x1d,0x39,0x00,0x00,0x1e,0xfc, /* ...9.... */
/* 72 */ 0x00,0x00,0x01,0xfc,0x66,0x70,0x67,0x6d, /* ....fpgm */
/* 80 */ 0xe7,0xb4,0xf1,0xc4,0x00,0x00,0x26,0x60, /* ......&` */
/* 88 */ 0x00,0x00,0x00,0x8b,0x67,0x61,0x73,0x70, /* ....gasp */
/* 96 */ 0x00,0x07,0x00,0x07,0x00,0x01,0x01,0x48, /* .......H */
/* 104 */ 0x00,0x00,0x00,0x0c,0x67,0x6c,0x79,0x66, /* ....glyf */
/* 112 */ 0x0c,0x74,0x41,0xcf,0x00,0x00,0x26,0xec, /* .tA...&. */
/* 120 */ 0x00,0x00,0x8a,0x7e,0x68,0x64,0x6d,0x78, /* ...~hdmx */
/* 128 */ 0x34,0xf0,0x21,0x0e,0x00,0x00,0xec,0x00, /* 4.!..... */
/* 136 */ 0x00,0x00,0x15,0x48,0x68,0x65,0x61,0x64, /* ...Hhead */
/* 144 */ 0xdd,0x84,0xa2,0xd0,0x00,0x01,0x01,0x54, /* .......T */
/* 152 */ 0x00,0x00,0x00,0x36,0x68,0x68,0x65,0x61, /* ...6hhea */
/* 160 */ 0x10,0x45,0x08,0x6f,0x00,0x00,0xeb,0x4c, /* .E.o...L */
/* 168 */ 0x00,0x00,0x00,0x24,0x68,0x6d,0x74,0x78, /* ...$hmtx */
/* 176 */ 0x09,0xc6,0x8e,0xb2,0x00,0x00,0xb4,0xc4, /* ........ */
/* 184 */ 0x00,0x00,0x04,0x30,0x6b,0x65,0x72,0x6e, /* ...0kern */
/* 192 */ 0xdc,0x52,0xd5,0x99,0x00,0x00,0xbd,0xa0, /* .R...... */
/* 200 */ 0x00,0x00,0x2d,0x8a,0x6c,0x6f,0x63,0x61, /* ..-.loca */
/* 208 */ 0xf3,0xcb,0xd2,0x3d,0x00,0x00,0xbb,0x84, /* ...=.... */
/* 216 */ 0x00,0x00,0x02,0x1a,0x6d,0x61,0x78,0x70, /* ....maxp */
/* 224 */ 0x05,0x47,0x06,0x3a,0x00,0x00,0xeb,0x2c, /* .G.:..., */
/* 232 */ 0x00,0x00,0x00,0x20,0x6e,0x61,0x6d,0x65, /* ... name */
/* 240 */ 0xd9,0xbc,0xc8,0xb5,0x00,0x00,0x01,0x1c, /* ........ */
/* 248 */ 0x00,0x00,0x1d,0xdf,0x70,0x6f,0x73,0x74, /* ....post */
/* 256 */ 0xb4,0x5a,0x2f,0xbb,0x00,0x00,0xb8,0xf4, /* .Z/..... */
/* 264 */ 0x00,0x00,0x02,0x8e,0x70,0x72,0x65,0x70, /* ....prep */
/* 272 */ 0x3b,0x07,0xf1,0x00,0x00,0x00,0x20,0xf8, /* ;..... . */
/* 280 */ 0x00,0x00,0x05,0x68,0x00,0x00,0x00,0x16, /* ...h.... */
/* 288 */ 0x01,0x0e,0x00,0x01,0x00,0x00,0x00,0x00, /* ........ */
/* 296 */ 0x00,0x00,0x00,0x3a,0x00,0x00,0x00,0x01, /* ...:.... */
/* 304 */ 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x13, /* ........ */
/* 312 */ 0x00,0x3a,0x00,0x01,0x00,0x00,0x00,0x00, /* .:...... */
/* 320 */ 0x00,0x02,0x00,0x05,0x00,0x5f,0x00,0x01, /* ....._.. */
/* 328 */ 0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x13, /* ........ */
/* 336 */ 0x00,0x3a,0x00,0x01,0x00,0x00,0x00,0x00, /* .:...... */
/* 344 */ 0x00,0x04,0x00,0x13,0x00,0x3a,0x00,0x01, /* .....:.. */
/* 352 */ 0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x0c, /* ........ */
/* 360 */ 0x00,0x64,0x00,0x01,0x00,0x00,0x00,0x00, /* .d...... */
/* 368 */ 0x00,0x06,0x00,0x17,0x00,0x4d,0x00,0x01, /* .....M.. */
/* 376 */ 0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x30, /* .......0 */
/* 384 */ 0x00,0xad,0x00,0x01,0x00,0x00,0x00,0x00, /* ........ */
/* 392 */ 0x00,0x08,0x00,0x0e,0x08,0x6c,0x00,0x01, /* .....l.. */
/* 400 */ 0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x18, /* ........ */
/* 408 */ 0x09,0x83,0x00,0x01,0x00,0x00,0x00,0x00, /* ........ */
/* 416 */ 0x00,0x0d,0x09,0x13,0x00,0x70,0x00,0x03, /* .....p.. */
/* 424 */ 0x00,0x01,0x04,0x09,0x00,0x00,0x00,0x74, /* .......t */
/* 432 */ 0x09,0x9b,0x00,0x03,0x00,0x01,0x04,0x09, /* ........ */
/* 440 */ 0x00,0x01,0x00,0x26,0x0a,0x0f,0x00,0x03, /* ...&.... */
/* 448 */ 0x00,0x01,0x04,0x09,0x00,0x02,0x00,0x0a, /* ........ */
/* 456 */ 0x0a,0x59,0x00,0x03,0x00,0x01,0x04,0x09, /* .Y...... */
/* 464 */ 0x00,0x03,0x00,0x26,0x0a,0x0f,0x00,0x03, /* ...&.... */
/* 472 */ 0x00,0x01,0x04,0x09,0x00,0x04,0x00,0x26, /* .......& */
/* 480 */ 0x0a,0x0f,0x00,0x03,0x00,0x01,0x04,0x09, /* ........ */
/* 488 */ 0x00,0x05,0x00,0x18,0x0a,0x63,0x00,0x03, /* .....c.. */
/* 496 */ 0x00,0x01,0x04,0x09,0x00,0x06,0x00,0x2e, /* ........ */
/* 504 */ 0x0a,0x35,0x00,0x03,0x00,0x01,0x04,0x09, /* .5...... */
/* 512 */ 0x00,0x07,0x00,0x60,0x0a,0xf5,0x00,0x03, /* ...`.... */
/* 520 */ 0x00,0x01,0x04,0x09,0x00,0x08,0x00,0x1c, /* ........ */
/* 528 */ 0x1a,0x73,0x00,0x03,0x00,0x01,0x04,0x09, /* .s...... */
/* 536 */ 0x00,0x0b,0x00,0x30,0x1c,0xa1,0x00,0x03, /* ...0.... */
/* 544 */ 0x00,0x01,0x04,0x09,0x00,0x0d,0x12,0x26, /* .......& */
/* 552 */ 0x0a,0x7b,0x43,0x6f,0x70,0x79,0x72,0x69, /* .{Copyri */
/* 560 */ 0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20, /* ght (c) */
/* 568 */ 0x32,0x30,0x30,0x33,0x20,0x62,0x79,0x20, /* 2003 by */
/* 576 */ 0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61, /* Bitstrea */
/* 584 */ 0x6d,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x20, /* m, Inc. */
/* 592 */ 0x41,0x6c,0x6c,0x20,0x52,0x69,0x67,0x68, /* All Righ */
/* 600 */ 0x74,0x73,0x20,0x52,0x65,0x73,0x65,0x72, /* ts Reser */
/* 608 */ 0x76,0x65,0x64,0x2e,0x42,0x69,0x74,0x73, /* ved.Bits */
/* 616 */ 0x74,0x72,0x65,0x61,0x6d,0x20,0x56,0x65, /* tream Ve */
/* 624 */ 0x72,0x61,0x20,0x53,0x61,0x6e,0x73,0x42, /* ra SansB */
/* 632 */ 0x69,0x74,0x73,0x74,0x72,0x65,0x61,0x6d, /* itstream */
/* 640 */ 0x56,0x65,0x72,0x61,0x53,0x61,0x6e,0x73, /* VeraSans */
/* 648 */ 0x2d,0x52,0x6f,0x6d,0x61,0x6e,0x52,0x65, /* -RomanRe */
/* 656 */ 0x6c,0x65,0x61,0x73,0x65,0x20,0x31,0x2e, /* lease 1. */
/* 664 */ 0x31,0x30,0x43,0x6f,0x70,0x79,0x72,0x69, /* 10Copyri */
/* 672 */ 0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20, /* ght (c) */
/* 680 */ 0x32,0x30,0x30,0x33,0x20,0x62,0x79,0x20, /* 2003 by */
/* 688 */ 0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61, /* Bitstrea */
/* 696 */ 0x6d,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x0d, /* m, Inc.. */
/* 704 */ 0x0a,0x41,0x6c,0x6c,0x20,0x52,0x69,0x67, /* .All Rig */
/* 712 */ 0x68,0x74,0x73,0x20,0x52,0x65,0x73,0x65, /* hts Rese */
/* 720 */ 0x72,0x76,0x65,0x64,0x2e,0x0d,0x0a,0x42, /* rved...B */
/* 728 */ 0x69,0x74,0x73,0x74,0x72,0x65,0x61,0x6d, /* itstream */
/* 736 */ 0x20,0x56,0x65,0x72,0x61,0x20,0x69,0x73, /* Vera is */
/* 744 */ 0x20,0x61,0x20,0x74,0x72,0x61,0x64,0x65, /* a trade */
/* 752 */ 0x6d,0x61,0x72,0x6b,0x20,0x6f,0x66,0x20, /* mark of */
/* 760 */ 0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61, /* Bitstrea */
/* 768 */ 0x6d,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x0d, /* m, Inc.. */
/* 776 */ 0x0a,0x0d,0x0a,0x50,0x65,0x72,0x6d,0x69, /* ...Permi */
/* 784 */ 0x73,0x73,0x69,0x6f,0x6e,0x20,0x69,0x73, /* ssion is */
/* 792 */ 0x20,0x68,0x65,0x72,0x65,0x62,0x79,0x20, /* hereby */
/* 800 */ 0x67,0x72,0x61,0x6e,0x74,0x65,0x64,0x2c, /* granted, */
/* 808 */ 0x20,0x66,0x72,0x65,0x65,0x20,0x6f,0x66, /* free of */
/* 816 */ 0x20,0x63,0x68,0x61,0x72,0x67,0x65,0x2c, /* charge, */
/* 824 */ 0x20,0x74,0x6f,0x20,0x61,0x6e,0x79,0x20, /* to any */
/* 832 */ 0x70,0x65,0x72,0x73,0x6f,0x6e,0x20,0x6f, /* person o */
/* 840 */ 0x62,0x74,0x61,0x69,0x6e,0x69,0x6e,0x67, /* btaining */
/* 848 */ 0x20,0x61,0x20,0x63,0x6f,0x70,0x79,0x20, /* a copy */
/* 856 */ 0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x66, /* of the f */
/* 864 */ 0x6f,0x6e,0x74,0x73,0x20,0x61,0x63,0x63, /* onts acc */
/* 872 */ 0x6f,0x6d,0x70,0x61,0x6e,0x79,0x69,0x6e, /* ompanyin */
/* 880 */ 0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x6c, /* g this l */
/* 888 */ 0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x28, /* icense ( */
/* 896 */ 0x22,0x46,0x6f,0x6e,0x74,0x73,0x22,0x29, /* "Fonts") */
/* 904 */ 0x20,0x61,0x6e,0x64,0x20,0x61,0x73,0x73, /* and ass */
/* 912 */ 0x6f,0x63,0x69,0x61,0x74,0x65,0x64,0x20, /* ociated */
/* 920 */ 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, /* document */
/* 928 */ 0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x69, /* ation fi */
/* 936 */ 0x6c,0x65,0x73,0x20,0x28,0x74,0x68,0x65, /* les (the */
/* 944 */ 0x20,0x22,0x46,0x6f,0x6e,0x74,0x20,0x53, /* "Font S */
/* 952 */ 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x22, /* oftware" */
/* 960 */ 0x29,0x2c,0x20,0x74,0x6f,0x20,0x72,0x65, /* ), to re */
/* 968 */ 0x70,0x72,0x6f,0x64,0x75,0x63,0x65,0x20, /* produce */
/* 976 */ 0x61,0x6e,0x64,0x20,0x64,0x69,0x73,0x74, /* and dist */
/* 984 */ 0x72,0x69,0x62,0x75,0x74,0x65,0x20,0x74, /* ribute t */
/* 992 */ 0x68,0x65,0x20,0x46,0x6f,0x6e,0x74,0x20, /* he Font */
/* 1000 */ 0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, /* Software */
/* 1008 */ 0x2c,0x20,0x69,0x6e,0x63,0x6c,0x75,0x64, /* , includ */
/* 1016 */ 0x69,0x6e,0x67,0x20,0x77,0x69,0x74,0x68, /* ing with */
/* 1024 */ 0x6f,0x75,0x74,0x20,0x6c,0x69,0x6d,0x69, /* out limi */
/* 1032 */ 0x74,0x61,0x74,0x69,0x6f,0x6e,0x20,0x74, /* tation t */
/* 1040 */ 0x68,0x65,0x20,0x72,0x69,0x67,0x68,0x74, /* he right */
/* 1048 */ 0x73,0x20,0x74,0x6f,0x20,0x75,0x73,0x65, /* s to use */
/* 1056 */ 0x2c,0x20,0x63,0x6f,0x70,0x79,0x2c,0x20, /* , copy, */
/* 1064 */ 0x6d,0x65,0x72,0x67,0x65,0x2c,0x20,0x70, /* merge, p */
/* 1072 */ 0x75,0x62,0x6c,0x69,0x73,0x68,0x2c,0x20, /* ublish, */
/* 1080 */ 0x64,0x69,0x73,0x74,0x72,0x69,0x62,0x75, /* distribu */
/* 1088 */ 0x74,0x65,0x2c,0x20,0x61,0x6e,0x64,0x2f, /* te, and/ */
/* 1096 */ 0x6f,0x72,0x20,0x73,0x65,0x6c,0x6c,0x20, /* or sell */
/* 1104 */ 0x63,0x6f,0x70,0x69,0x65,0x73,0x20,0x6f, /* copies o */
/* 1112 */ 0x66,0x20,0x74,0x68,0x65,0x20,0x46,0x6f, /* f the Fo */
/* 1120 */ 0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77, /* nt Softw */
/* 1128 */ 0x61,0x72,0x65,0x2c,0x20,0x61,0x6e,0x64, /* are, and */
/* 1136 */ 0x20,0x74,0x6f,0x20,0x70,0x65,0x72,0x6d, /* to perm */
/* 1144 */ 0x69,0x74,0x20,0x70,0x65,0x72,0x73,0x6f, /* it perso */
/* 1152 */ 0x6e,0x73,0x20,0x74,0x6f,0x20,0x77,0x68, /* ns to wh */
/* 1160 */ 0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x46, /* om the F */
/* 1168 */ 0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74, /* ont Soft */
/* 1176 */ 0x77,0x61,0x72,0x65,0x20,0x69,0x73,0x20, /* ware is */
/* 1184 */ 0x66,0x75,0x72,0x6e,0x69,0x73,0x68,0x65, /* furnishe */
/* 1192 */ 0x64,0x20,0x74,0x6f,0x20,0x64,0x6f,0x20, /* d to do */
/* 1200 */ 0x73,0x6f,0x2c,0x20,0x73,0x75,0x62,0x6a, /* so, subj */
/* 1208 */ 0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x74, /* ect to t */
/* 1216 */ 0x68,0x65,0x20,0x66,0x6f,0x6c,0x6c,0x6f, /* he follo */
/* 1224 */ 0x77,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e, /* wing con */
/* 1232 */ 0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x3a, /* ditions: */
/* 1240 */ 0x0d,0x0a,0x0d,0x0a,0x54,0x68,0x65,0x20, /* ....The */
/* 1248 */ 0x61,0x62,0x6f,0x76,0x65,0x20,0x63,0x6f, /* above co */
/* 1256 */ 0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20, /* pyright */
/* 1264 */ 0x61,0x6e,0x64,0x20,0x74,0x72,0x61,0x64, /* and trad */
/* 1272 */ 0x65,0x6d,0x61,0x72,0x6b,0x20,0x6e,0x6f, /* emark no */
/* 1280 */ 0x74,0x69,0x63,0x65,0x73,0x20,0x61,0x6e, /* tices an */
/* 1288 */ 0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x70, /* d this p */
/* 1296 */ 0x65,0x72,0x6d,0x69,0x73,0x73,0x69,0x6f, /* ermissio */
/* 1304 */ 0x6e,0x20,0x6e,0x6f,0x74,0x69,0x63,0x65, /* n notice */
/* 1312 */ 0x20,0x73,0x68,0x61,0x6c,0x6c,0x20,0x62, /* shall b */
/* 1320 */ 0x65,0x20,0x69,0x6e,0x63,0x6c,0x75,0x64, /* e includ */
/* 1328 */ 0x65,0x64,0x20,0x69,0x6e,0x20,0x61,0x6c, /* ed in al */
/* 1336 */ 0x6c,0x20,0x63,0x6f,0x70,0x69,0x65,0x73, /* l copies */
/* 1344 */ 0x20,0x6f,0x66,0x20,0x6f,0x6e,0x65,0x20, /* of one */
/* 1352 */ 0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20, /* or more */
/* 1360 */ 0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x46, /* of the F */
/* 1368 */ 0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74, /* ont Soft */
/* 1376 */ 0x77,0x61,0x72,0x65,0x20,0x74,0x79,0x70, /* ware typ */
/* 1384 */ 0x65,0x66,0x61,0x63,0x65,0x73,0x2e,0x0d, /* efaces.. */
/* 1392 */ 0x0a,0x0d,0x0a,0x54,0x68,0x65,0x20,0x46, /* ...The F */
/* 1400 */ 0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74, /* ont Soft */
/* 1408 */ 0x77,0x61,0x72,0x65,0x20,0x6d,0x61,0x79, /* ware may */
/* 1416 */ 0x20,0x62,0x65,0x20,0x6d,0x6f,0x64,0x69, /* be modi */
/* 1424 */ 0x66,0x69,0x65,0x64,0x2c,0x20,0x61,0x6c, /* fied, al */
/* 1432 */ 0x74,0x65,0x72,0x65,0x64,0x2c,0x20,0x6f, /* tered, o */
/* 1440 */ 0x72,0x20,0x61,0x64,0x64,0x65,0x64,0x20, /* r added */
/* 1448 */ 0x74,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20, /* to, and */
/* 1456 */ 0x69,0x6e,0x20,0x70,0x61,0x72,0x74,0x69, /* in parti */
/* 1464 */ 0x63,0x75,0x6c,0x61,0x72,0x20,0x74,0x68, /* cular th */
/* 1472 */ 0x65,0x20,0x64,0x65,0x73,0x69,0x67,0x6e, /* e design */
/* 1480 */ 0x73,0x20,0x6f,0x66,0x20,0x67,0x6c,0x79, /* s of gly */
/* 1488 */ 0x70,0x68,0x73,0x20,0x6f,0x72,0x20,0x63, /* phs or c */
/* 1496 */ 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72, /* haracter */
/* 1504 */ 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65, /* s in the */
/* 1512 */ 0x20,0x46,0x6f,0x6e,0x74,0x73,0x20,0x6d, /* Fonts m */
/* 1520 */ 0x61,0x79,0x20,0x62,0x65,0x20,0x6d,0x6f, /* ay be mo */
/* 1528 */ 0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61, /* dified a */
/* 1536 */ 0x6e,0x64,0x20,0x61,0x64,0x64,0x69,0x74, /* nd addit */
/* 1544 */ 0x69,0x6f,0x6e,0x61,0x6c,0x20,0x67,0x6c, /* ional gl */
/* 1552 */ 0x79,0x70,0x68,0x73,0x20,0x6f,0x72,0x20, /* yphs or */
/* 1560 */ 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65, /* characte */
/* 1568 */ 0x72,0x73,0x20,0x6d,0x61,0x79,0x20,0x62, /* rs may b */
/* 1576 */ 0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20, /* e added */
/* 1584 */ 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x46, /* to the F */
/* 1592 */ 0x6f,0x6e,0x74,0x73,0x2c,0x20,0x6f,0x6e, /* onts, on */
/* 1600 */ 0x6c,0x79,0x20,0x69,0x66,0x20,0x74,0x68, /* ly if th */
/* 1608 */ 0x65,0x20,0x66,0x6f,0x6e,0x74,0x73,0x20, /* e fonts */
/* 1616 */ 0x61,0x72,0x65,0x20,0x72,0x65,0x6e,0x61, /* are rena */
/* 1624 */ 0x6d,0x65,0x64,0x20,0x74,0x6f,0x20,0x6e, /* med to n */
/* 1632 */ 0x61,0x6d,0x65,0x73,0x20,0x6e,0x6f,0x74, /* ames not */
/* 1640 */ 0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e, /* contain */
/* 1648 */ 0x69,0x6e,0x67,0x20,0x65,0x69,0x74,0x68, /* ing eith */
/* 1656 */ 0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x77, /* er the w */
/* 1664 */ 0x6f,0x72,0x64,0x73,0x20,0x22,0x42,0x69, /* ords "Bi */
/* 1672 */ 0x74,0x73,0x74,0x72,0x65,0x61,0x6d,0x22, /* tstream" */
/* 1680 */ 0x20,0x6f,0x72,0x20,0x74,0x68,0x65,0x20, /* or the */
/* 1688 */ 0x77,0x6f,0x72,0x64,0x20,0x22,0x56,0x65, /* word "Ve */
/* 1696 */ 0x72,0x61,0x22,0x2e,0x0d,0x0a,0x0d,0x0a, /* ra"..... */
/* 1704 */ 0x54,0x68,0x69,0x73,0x20,0x4c,0x69,0x63, /* This Lic */
/* 1712 */ 0x65,0x6e,0x73,0x65,0x20,0x62,0x65,0x63, /* ense bec */
/* 1720 */ 0x6f,0x6d,0x65,0x73,0x20,0x6e,0x75,0x6c, /* omes nul */
/* 1728 */ 0x6c,0x20,0x61,0x6e,0x64,0x20,0x76,0x6f, /* l and vo */
/* 1736 */ 0x69,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, /* id to th */
/* 1744 */ 0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x74, /* e extent */
/* 1752 */ 0x20,0x61,0x70,0x70,0x6c,0x69,0x63,0x61, /* applica */
/* 1760 */ 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x46, /* ble to F */
/* 1768 */ 0x6f,0x6e,0x74,0x73,0x20,0x6f,0x72,0x20, /* onts or */
/* 1776 */ 0x46,0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66, /* Font Sof */
/* 1784 */ 0x74,0x77,0x61,0x72,0x65,0x20,0x74,0x68, /* tware th */
/* 1792 */ 0x61,0x74,0x20,0x68,0x61,0x73,0x20,0x62, /* at has b */
/* 1800 */ 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x69, /* een modi */
/* 1808 */ 0x66,0x69,0x65,0x64,0x20,0x61,0x6e,0x64, /* fied and */
/* 1816 */ 0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x74, /* is dist */
/* 1824 */ 0x72,0x69,0x62,0x75,0x74,0x65,0x64,0x20, /* ributed */
/* 1832 */ 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68, /* under th */
/* 1840 */ 0x65,0x20,0x22,0x42,0x69,0x74,0x73,0x74, /* e "Bitst */
/* 1848 */ 0x72,0x65,0x61,0x6d,0x20,0x56,0x65,0x72, /* ream Ver */
/* 1856 */ 0x61,0x22,0x20,0x6e,0x61,0x6d,0x65,0x73, /* a" names */
/* 1864 */ 0x2e,0x0d,0x0a,0x0d,0x0a,0x54,0x68,0x65, /* .....The */
/* 1872 */ 0x20,0x46,0x6f,0x6e,0x74,0x20,0x53,0x6f, /* Font So */
/* 1880 */ 0x66,0x74,0x77,0x61,0x72,0x65,0x20,0x6d, /* ftware m */
/* 1888 */ 0x61,0x79,0x20,0x62,0x65,0x20,0x73,0x6f, /* ay be so */
/* 1896 */ 0x6c,0x64,0x20,0x61,0x73,0x20,0x70,0x61, /* ld as pa */
/* 1904 */ 0x72,0x74,0x20,0x6f,0x66,0x20,0x61,0x20, /* rt of a */
/* 1912 */ 0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x73, /* larger s */
/* 1920 */ 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20, /* oftware */
/* 1928 */ 0x70,0x61,0x63,0x6b,0x61,0x67,0x65,0x20, /* package */
/* 1936 */ 0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x63, /* but no c */
/* 1944 */ 0x6f,0x70,0x79,0x20,0x6f,0x66,0x20,0x6f, /* opy of o */
/* 1952 */ 0x6e,0x65,0x20,0x6f,0x72,0x20,0x6d,0x6f, /* ne or mo */
/* 1960 */ 0x72,0x65,0x20,0x6f,0x66,0x20,0x74,0x68, /* re of th */
/* 1968 */ 0x65,0x20,0x46,0x6f,0x6e,0x74,0x20,0x53, /* e Font S */
/* 1976 */ 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20, /* oftware */
/* 1984 */ 0x74,0x79,0x70,0x65,0x66,0x61,0x63,0x65, /* typeface */
/* 1992 */ 0x73,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, /* s may be */
/* 2000 */ 0x20,0x73,0x6f,0x6c,0x64,0x20,0x62,0x79, /* sold by */
/* 2008 */ 0x20,0x69,0x74,0x73,0x65,0x6c,0x66,0x2e, /* itself. */
/* 2016 */ 0x0d,0x0a,0x0d,0x0a,0x54,0x48,0x45,0x20, /* ....THE */
/* 2024 */ 0x46,0x4f,0x4e,0x54,0x20,0x53,0x4f,0x46, /* FONT SOF */
/* 2032 */ 0x54,0x57,0x41,0x52,0x45,0x20,0x49,0x53, /* TWARE IS */
/* 2040 */ 0x20,0x50,0x52,0x4f,0x56,0x49,0x44,0x45, /* PROVIDE */
/* 2048 */ 0x44,0x20,0x22,0x41,0x53,0x20,0x49,0x53, /* D "AS IS */
/* 2056 */ 0x22,0x2c,0x20,0x57,0x49,0x54,0x48,0x4f, /* ", WITHO */
/* 2064 */ 0x55,0x54,0x20,0x57,0x41,0x52,0x52,0x41, /* UT WARRA */
/* 2072 */ 0x4e,0x54,0x59,0x20,0x4f,0x46,0x20,0x41, /* NTY OF A */
/* 2080 */ 0x4e,0x59,0x20,0x4b,0x49,0x4e,0x44,0x2c, /* NY KIND, */
/* 2088 */ 0x20,0x45,0x58,0x50,0x52,0x45,0x53,0x53, /* EXPRESS */
/* 2096 */ 0x20,0x4f,0x52,0x20,0x49,0x4d,0x50,0x4c, /* OR IMPL */
/* 2104 */ 0x49,0x45,0x44,0x2c,0x20,0x49,0x4e,0x43, /* IED, INC */
/* 2112 */ 0x4c,0x55,0x44,0x49,0x4e,0x47,0x20,0x42, /* LUDING B */
/* 2120 */ 0x55,0x54,0x20,0x4e,0x4f,0x54,0x20,0x4c, /* UT NOT L */
/* 2128 */ 0x49,0x4d,0x49,0x54,0x45,0x44,0x20,0x54, /* IMITED T */
/* 2136 */ 0x4f,0x20,0x41,0x4e,0x59,0x20,0x57,0x41, /* O ANY WA */
/* 2144 */ 0x52,0x52,0x41,0x4e,0x54,0x49,0x45,0x53, /* RRANTIES */
/* 2152 */ 0x20,0x4f,0x46,0x20,0x4d,0x45,0x52,0x43, /* OF MERC */
/* 2160 */ 0x48,0x41,0x4e,0x54,0x41,0x42,0x49,0x4c, /* HANTABIL */
/* 2168 */ 0x49,0x54,0x59,0x2c,0x20,0x46,0x49,0x54, /* ITY, FIT */
/* 2176 */ 0x4e,0x45,0x53,0x53,0x20,0x46,0x4f,0x52, /* NESS FOR */
/* 2184 */ 0x20,0x41,0x20,0x50,0x41,0x52,0x54,0x49, /* A PARTI */
/* 2192 */ 0x43,0x55,0x4c,0x41,0x52,0x20,0x50,0x55, /* CULAR PU */
/* 2200 */ 0x52,0x50,0x4f,0x53,0x45,0x20,0x41,0x4e, /* RPOSE AN */
/* 2208 */ 0x44,0x20,0x4e,0x4f,0x4e,0x49,0x4e,0x46, /* D NONINF */
/* 2216 */ 0x52,0x49,0x4e,0x47,0x45,0x4d,0x45,0x4e, /* RINGEMEN */
/* 2224 */ 0x54,0x20,0x4f,0x46,0x20,0x43,0x4f,0x50, /* T OF COP */
/* 2232 */ 0x59,0x52,0x49,0x47,0x48,0x54,0x2c,0x20, /* YRIGHT, */
/* 2240 */ 0x50,0x41,0x54,0x45,0x4e,0x54,0x2c,0x20, /* PATENT, */
/* 2248 */ 0x54,0x52,0x41,0x44,0x45,0x4d,0x41,0x52, /* TRADEMAR */
/* 2256 */ 0x4b,0x2c,0x20,0x4f,0x52,0x20,0x4f,0x54, /* K, OR OT */
/* 2264 */ 0x48,0x45,0x52,0x20,0x52,0x49,0x47,0x48, /* HER RIGH */
/* 2272 */ 0x54,0x2e,0x20,0x49,0x4e,0x20,0x4e,0x4f, /* T. IN NO */
/* 2280 */ 0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x53, /* EVENT S */
/* 2288 */ 0x48,0x41,0x4c,0x4c,0x20,0x42,0x49,0x54, /* HALL BIT */
/* 2296 */ 0x53,0x54,0x52,0x45,0x41,0x4d,0x20,0x4f, /* STREAM O */
/* 2304 */ 0x52,0x20,0x54,0x48,0x45,0x20,0x47,0x4e, /* R THE GN */
/* 2312 */ 0x4f,0x4d,0x45,0x20,0x46,0x4f,0x55,0x4e, /* OME FOUN */
/* 2320 */ 0x44,0x41,0x54,0x49,0x4f,0x4e,0x20,0x42, /* DATION B */
/* 2328 */ 0x45,0x20,0x4c,0x49,0x41,0x42,0x4c,0x45, /* E LIABLE */
/* 2336 */ 0x20,0x46,0x4f,0x52,0x20,0x41,0x4e,0x59, /* FOR ANY */
/* 2344 */ 0x20,0x43,0x4c,0x41,0x49,0x4d,0x2c,0x20, /* CLAIM, */
/* 2352 */ 0x44,0x41,0x4d,0x41,0x47,0x45,0x53,0x20, /* DAMAGES */
/* 2360 */ 0x4f,0x52,0x20,0x4f,0x54,0x48,0x45,0x52, /* OR OTHER */
/* 2368 */ 0x20,0x4c,0x49,0x41,0x42,0x49,0x4c,0x49, /* LIABILI */
/* 2376 */ 0x54,0x59,0x2c,0x20,0x49,0x4e,0x43,0x4c, /* TY, INCL */
/* 2384 */ 0x55,0x44,0x49,0x4e,0x47,0x20,0x41,0x4e, /* UDING AN */
/* 2392 */ 0x59,0x20,0x47,0x45,0x4e,0x45,0x52,0x41, /* Y GENERA */
/* 2400 */ 0x4c,0x2c,0x20,0x53,0x50,0x45,0x43,0x49, /* L, SPECI */
/* 2408 */ 0x41,0x4c,0x2c,0x20,0x49,0x4e,0x44,0x49, /* AL, INDI */
/* 2416 */ 0x52,0x45,0x43,0x54,0x2c,0x20,0x49,0x4e, /* RECT, IN */
/* 2424 */ 0x43,0x49,0x44,0x45,0x4e,0x54,0x41,0x4c, /* CIDENTAL */
/* 2432 */ 0x2c,0x20,0x4f,0x52,0x20,0x43,0x4f,0x4e, /* , OR CON */
/* 2440 */ 0x53,0x45,0x51,0x55,0x45,0x4e,0x54,0x49, /* SEQUENTI */
/* 2448 */ 0x41,0x4c,0x20,0x44,0x41,0x4d,0x41,0x47, /* AL DAMAG */
/* 2456 */ 0x45,0x53,0x2c,0x20,0x57,0x48,0x45,0x54, /* ES, WHET */
/* 2464 */ 0x48,0x45,0x52,0x20,0x49,0x4e,0x20,0x41, /* HER IN A */
/* 2472 */ 0x4e,0x20,0x41,0x43,0x54,0x49,0x4f,0x4e, /* N ACTION */
/* 2480 */ 0x20,0x4f,0x46,0x20,0x43,0x4f,0x4e,0x54, /* OF CONT */
/* 2488 */ 0x52,0x41,0x43,0x54,0x2c,0x20,0x54,0x4f, /* RACT, TO */
/* 2496 */ 0x52,0x54,0x20,0x4f,0x52,0x20,0x4f,0x54, /* RT OR OT */
/* 2504 */ 0x48,0x45,0x52,0x57,0x49,0x53,0x45,0x2c, /* HERWISE, */
/* 2512 */ 0x20,0x41,0x52,0x49,0x53,0x49,0x4e,0x47, /* ARISING */
/* 2520 */ 0x20,0x46,0x52,0x4f,0x4d,0x2c,0x20,0x4f, /* FROM, O */
/* 2528 */ 0x55,0x54,0x20,0x4f,0x46,0x20,0x54,0x48, /* UT OF TH */
/* 2536 */ 0x45,0x20,0x55,0x53,0x45,0x20,0x4f,0x52, /* E USE OR */
/* 2544 */ 0x20,0x49,0x4e,0x41,0x42,0x49,0x4c,0x49, /* INABILI */
/* 2552 */ 0x54,0x59,0x20,0x54,0x4f,0x20,0x55,0x53, /* TY TO US */
/* 2560 */ 0x45,0x20,0x54,0x48,0x45,0x20,0x46,0x4f, /* E THE FO */
/* 2568 */ 0x4e,0x54,0x20,0x53,0x4f,0x46,0x54,0x57, /* NT SOFTW */
/* 2576 */ 0x41,0x52,0x45,0x20,0x4f,0x52,0x20,0x46, /* ARE OR F */
/* 2584 */ 0x52,0x4f,0x4d,0x20,0x4f,0x54,0x48,0x45, /* ROM OTHE */
/* 2592 */ 0x52,0x20,0x44,0x45,0x41,0x4c,0x49,0x4e, /* R DEALIN */
/* 2600 */ 0x47,0x53,0x20,0x49,0x4e,0x20,0x54,0x48, /* GS IN TH */
/* 2608 */ 0x45,0x20,0x46,0x4f,0x4e,0x54,0x20,0x53, /* E FONT S */
/* 2616 */ 0x4f,0x46,0x54,0x57,0x41,0x52,0x45,0x2e, /* OFTWARE. */
/* 2624 */ 0x0d,0x0a,0x0d,0x0a,0x45,0x78,0x63,0x65, /* ....Exce */
/* 2632 */ 0x70,0x74,0x20,0x61,0x73,0x20,0x63,0x6f, /* pt as co */
/* 2640 */ 0x6e,0x74,0x61,0x69,0x6e,0x65,0x64,0x20, /* ntained */
/* 2648 */ 0x69,0x6e,0x20,0x74,0x68,0x69,0x73,0x20, /* in this */
/* 2656 */ 0x6e,0x6f,0x74,0x69,0x63,0x65,0x2c,0x20, /* notice, */
/* 2664 */ 0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,0x65, /* the name */
/* 2672 */ 0x73,0x20,0x6f,0x66,0x20,0x47,0x6e,0x6f, /* s of Gno */
/* 2680 */ 0x6d,0x65,0x2c,0x20,0x74,0x68,0x65,0x20, /* me, the */
/* 2688 */ 0x47,0x6e,0x6f,0x6d,0x65,0x20,0x46,0x6f, /* Gnome Fo */
/* 2696 */ 0x75,0x6e,0x64,0x61,0x74,0x69,0x6f,0x6e, /* undation */
/* 2704 */ 0x2c,0x20,0x61,0x6e,0x64,0x20,0x42,0x69, /* , and Bi */
/* 2712 */ 0x74,0x73,0x74,0x72,0x65,0x61,0x6d,0x20, /* tstream */
/* 2720 */ 0x49,0x6e,0x63,0x2e,0x2c,0x20,0x73,0x68, /* Inc., sh */
/* 2728 */ 0x61,0x6c,0x6c,0x20,0x6e,0x6f,0x74,0x20, /* all not */
/* 2736 */ 0x62,0x65,0x20,0x75,0x73,0x65,0x64,0x20, /* be used */
/* 2744 */ 0x69,0x6e,0x20,0x61,0x64,0x76,0x65,0x72, /* in adver */
/* 2752 */ 0x74,0x69,0x73,0x69,0x6e,0x67,0x20,0x6f, /* tising o */
/* 2760 */ 0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x77, /* r otherw */
/* 2768 */ 0x69,0x73,0x65,0x20,0x74,0x6f,0x20,0x70, /* ise to p */
/* 2776 */ 0x72,0x6f,0x6d,0x6f,0x74,0x65,0x20,0x74, /* romote t */
/* 2784 */ 0x68,0x65,0x20,0x73,0x61,0x6c,0x65,0x2c, /* he sale, */
/* 2792 */ 0x20,0x75,0x73,0x65,0x20,0x6f,0x72,0x20, /* use or */
/* 2800 */ 0x6f,0x74,0x68,0x65,0x72,0x20,0x64,0x65, /* other de */
/* 2808 */ 0x61,0x6c,0x69,0x6e,0x67,0x73,0x20,0x69, /* alings i */
/* 2816 */ 0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x46, /* n this F */
/* 2824 */ 0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74, /* ont Soft */
/* 2832 */ 0x77,0x61,0x72,0x65,0x20,0x77,0x69,0x74, /* ware wit */
/* 2840 */ 0x68,0x6f,0x75,0x74,0x20,0x70,0x72,0x69, /* hout pri */
/* 2848 */ 0x6f,0x72,0x20,0x77,0x72,0x69,0x74,0x74, /* or writt */
/* 2856 */ 0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x6f, /* en autho */
/* 2864 */ 0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e, /* rization */
/* 2872 */ 0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68, /* from th */
/* 2880 */ 0x65,0x20,0x47,0x6e,0x6f,0x6d,0x65,0x20, /* e Gnome */
/* 2888 */ 0x46,0x6f,0x75,0x6e,0x64,0x61,0x74,0x69, /* Foundati */
/* 2896 */ 0x6f,0x6e,0x20,0x6f,0x72,0x20,0x42,0x69, /* on or Bi */
/* 2904 */ 0x74,0x73,0x74,0x72,0x65,0x61,0x6d,0x20, /* tstream */
/* 2912 */ 0x49,0x6e,0x63,0x2e,0x2c,0x20,0x72,0x65, /* Inc., re */
/* 2920 */ 0x73,0x70,0x65,0x63,0x74,0x69,0x76,0x65, /* spective */
/* 2928 */ 0x6c,0x79,0x2e,0x20,0x46,0x6f,0x72,0x20, /* ly. For */
/* 2936 */ 0x66,0x75,0x72,0x74,0x68,0x65,0x72,0x20, /* further */
/* 2944 */ 0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74, /* informat */
/* 2952 */ 0x69,0x6f,0x6e,0x2c,0x20,0x63,0x6f,0x6e, /* ion, con */
/* 2960 */ 0x74,0x61,0x63,0x74,0x3a,0x20,0x66,0x6f, /* tact: fo */
/* 2968 */ 0x6e,0x74,0x73,0x20,0x61,0x74,0x20,0x67, /* nts at g */
/* 2976 */ 0x6e,0x6f,0x6d,0x65,0x20,0x64,0x6f,0x74, /* nome dot */
/* 2984 */ 0x20,0x6f,0x72,0x67,0x2e,0x68,0x74,0x74, /* org.htt */
/* 2992 */ 0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e, /* p:/.www. */
/* 3000 */ 0x62,0x69,0x74,0x73,0x74,0x72,0x65,0x61, /* bitstrea */
/* 3008 */ 0x6d,0x2e,0x63,0x6f,0x6d,0x00,0x43,0x00, /* m.com.C. */
/* 3016 */ 0x6f,0x00,0x70,0x00,0x79,0x00,0x72,0x00, /* o.p.y.r. */
/* 3024 */ 0x69,0x00,0x67,0x00,0x68,0x00,0x74,0x00, /* i.g.h.t. */
/* 3032 */ 0x20,0x00,0x28,0x00,0x63,0x00,0x29,0x00, /* .(.c.). */
/* 3040 */ 0x20,0x00,0x32,0x00,0x30,0x00,0x30,0x00, /* .2.0.0. */
/* 3048 */ 0x33,0x00,0x20,0x00,0x62,0x00,0x79,0x00, /* 3. .b.y. */
/* 3056 */ 0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00, /* .B.i.t. */
/* 3064 */ 0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00, /* s.t.r.e. */
/* 3072 */ 0x61,0x00,0x6d,0x00,0x2c,0x00,0x20,0x00, /* a.m.,. . */
/* 3080 */ 0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00, /* I.n.c... */
/* 3088 */ 0x20,0x00,0x41,0x00,0x6c,0x00,0x6c,0x00, /* .A.l.l. */
/* 3096 */ 0x20,0x00,0x52,0x00,0x69,0x00,0x67,0x00, /* .R.i.g. */
/* 3104 */ 0x68,0x00,0x74,0x00,0x73,0x00,0x20,0x00, /* h.t.s. . */
/* 3112 */ 0x52,0x00,0x65,0x00,0x73,0x00,0x65,0x00, /* R.e.s.e. */
/* 3120 */ 0x72,0x00,0x76,0x00,0x65,0x00,0x64,0x00, /* r.v.e.d. */
/* 3128 */ 0x2e,0x00,0x42,0x00,0x69,0x00,0x74,0x00, /* ..B.i.t. */
/* 3136 */ 0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00, /* s.t.r.e. */
/* 3144 */ 0x61,0x00,0x6d,0x00,0x20,0x00,0x56,0x00, /* a.m. .V. */
/* 3152 */ 0x65,0x00,0x72,0x00,0x61,0x00,0x20,0x00, /* e.r.a. . */
/* 3160 */ 0x53,0x00,0x61,0x00,0x6e,0x00,0x73,0x00, /* S.a.n.s. */
/* 3168 */ 0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00, /* B.i.t.s. */
/* 3176 */ 0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00, /* t.r.e.a. */
/* 3184 */ 0x6d,0x00,0x56,0x00,0x65,0x00,0x72,0x00, /* m.V.e.r. */
/* 3192 */ 0x61,0x00,0x53,0x00,0x61,0x00,0x6e,0x00, /* a.S.a.n. */
/* 3200 */ 0x73,0x00,0x2d,0x00,0x52,0x00,0x6f,0x00, /* s.-.R.o. */
/* 3208 */ 0x6d,0x00,0x61,0x00,0x6e,0x00,0x52,0x00, /* m.a.n.R. */
/* 3216 */ 0x65,0x00,0x6c,0x00,0x65,0x00,0x61,0x00, /* e.l.e.a. */
/* 3224 */ 0x73,0x00,0x65,0x00,0x20,0x00,0x31,0x00, /* s.e. .1. */
/* 3232 */ 0x2e,0x00,0x31,0x00,0x30,0x00,0x43,0x00, /* ..1.0.C. */
/* 3240 */ 0x6f,0x00,0x70,0x00,0x79,0x00,0x72,0x00, /* o.p.y.r. */
/* 3248 */ 0x69,0x00,0x67,0x00,0x68,0x00,0x74,0x00, /* i.g.h.t. */
/* 3256 */ 0x20,0x00,0x28,0x00,0x63,0x00,0x29,0x00, /* .(.c.). */
/* 3264 */ 0x20,0x00,0x32,0x00,0x30,0x00,0x30,0x00, /* .2.0.0. */
/* 3272 */ 0x33,0x00,0x20,0x00,0x62,0x00,0x79,0x00, /* 3. .b.y. */
/* 3280 */ 0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00, /* .B.i.t. */
/* 3288 */ 0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00, /* s.t.r.e. */
/* 3296 */ 0x61,0x00,0x6d,0x00,0x2c,0x00,0x20,0x00, /* a.m.,. . */
/* 3304 */ 0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00, /* I.n.c... */
/* 3312 */ 0x0d,0x00,0x0a,0x00,0x41,0x00,0x6c,0x00, /* ....A.l. */
/* 3320 */ 0x6c,0x00,0x20,0x00,0x52,0x00,0x69,0x00, /* l. .R.i. */
/* 3328 */ 0x67,0x00,0x68,0x00,0x74,0x00,0x73,0x00, /* g.h.t.s. */
/* 3336 */ 0x20,0x00,0x52,0x00,0x65,0x00,0x73,0x00, /* .R.e.s. */
/* 3344 */ 0x65,0x00,0x72,0x00,0x76,0x00,0x65,0x00, /* e.r.v.e. */
/* 3352 */ 0x64,0x00,0x2e,0x00,0x0d,0x00,0x0a,0x00, /* d....... */
/* 3360 */ 0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00, /* B.i.t.s. */
/* 3368 */ 0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00, /* t.r.e.a. */
/* 3376 */ 0x6d,0x00,0x20,0x00,0x56,0x00,0x65,0x00, /* m. .V.e. */
/* 3384 */ 0x72,0x00,0x61,0x00,0x20,0x00,0x69,0x00, /* r.a. .i. */
/* 3392 */ 0x73,0x00,0x20,0x00,0x61,0x00,0x20,0x00, /* s. .a. . */
/* 3400 */ 0x74,0x00,0x72,0x00,0x61,0x00,0x64,0x00, /* t.r.a.d. */
/* 3408 */ 0x65,0x00,0x6d,0x00,0x61,0x00,0x72,0x00, /* e.m.a.r. */
/* 3416 */ 0x6b,0x00,0x20,0x00,0x6f,0x00,0x66,0x00, /* k. .o.f. */
/* 3424 */ 0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00, /* .B.i.t. */
/* 3432 */ 0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00, /* s.t.r.e. */
/* 3440 */ 0x61,0x00,0x6d,0x00,0x2c,0x00,0x20,0x00, /* a.m.,. . */
/* 3448 */ 0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00, /* I.n.c... */
/* 3456 */ 0x0d,0x00,0x0a,0x00,0x0d,0x00,0x0a,0x00, /* ........ */
/* 3464 */ 0x50,0x00,0x65,0x00,0x72,0x00,0x6d,0x00, /* P.e.r.m. */
/* 3472 */ 0x69,0x00,0x73,0x00,0x73,0x00,0x69,0x00, /* i.s.s.i. */
/* 3480 */ 0x6f,0x00,0x6e,0x00,0x20,0x00,0x69,0x00, /* o.n. .i. */
/* 3488 */ 0x73,0x00,0x20,0x00,0x68,0x00,0x65,0x00, /* s. .h.e. */
/* 3496 */ 0x72,0x00,0x65,0x00,0x62,0x00,0x79,0x00, /* r.e.b.y. */
/* 3504 */ 0x20,0x00,0x67,0x00,0x72,0x00,0x61,0x00, /* .g.r.a. */
/* 3512 */ 0x6e,0x00,0x74,0x00,0x65,0x00,0x64,0x00, /* n.t.e.d. */
/* 3520 */ 0x2c,0x00,0x20,0x00,0x66,0x00,0x72,0x00, /* ,. .f.r. */
/* 3528 */ 0x65,0x00,0x65,0x00,0x20,0x00,0x6f,0x00, /* e.e. .o. */
/* 3536 */ 0x66,0x00,0x20,0x00,0x63,0x00,0x68,0x00, /* f. .c.h. */
/* 3544 */ 0x61,0x00,0x72,0x00,0x67,0x00,0x65,0x00, /* a.r.g.e. */
/* 3552 */ 0x2c,0x00,0x20,0x00,0x74,0x00,0x6f,0x00, /* ,. .t.o. */
/* 3560 */ 0x20,0x00,0x61,0x00,0x6e,0x00,0x79,0x00, /* .a.n.y. */
/* 3568 */ 0x20,0x00,0x70,0x00,0x65,0x00,0x72,0x00, /* .p.e.r. */
/* 3576 */ 0x73,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00, /* s.o.n. . */
/* 3584 */ 0x6f,0x00,0x62,0x00,0x74,0x00,0x61,0x00, /* o.b.t.a. */
/* 3592 */ 0x69,0x00,0x6e,0x00,0x69,0x00,0x6e,0x00, /* i.n.i.n. */
/* 3600 */ 0x67,0x00,0x20,0x00,0x61,0x00,0x20,0x00, /* g. .a. . */
/* 3608 */ 0x63,0x00,0x6f,0x00,0x70,0x00,0x79,0x00, /* c.o.p.y. */
/* 3616 */ 0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00, /* .o.f. . */
/* 3624 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 3632 */ 0x66,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* f.o.n.t. */
/* 3640 */ 0x73,0x00,0x20,0x00,0x61,0x00,0x63,0x00, /* s. .a.c. */
/* 3648 */ 0x63,0x00,0x6f,0x00,0x6d,0x00,0x70,0x00, /* c.o.m.p. */
/* 3656 */ 0x61,0x00,0x6e,0x00,0x79,0x00,0x69,0x00, /* a.n.y.i. */
/* 3664 */ 0x6e,0x00,0x67,0x00,0x20,0x00,0x74,0x00, /* n.g. .t. */
/* 3672 */ 0x68,0x00,0x69,0x00,0x73,0x00,0x20,0x00, /* h.i.s. . */
/* 3680 */ 0x6c,0x00,0x69,0x00,0x63,0x00,0x65,0x00, /* l.i.c.e. */
/* 3688 */ 0x6e,0x00,0x73,0x00,0x65,0x00,0x20,0x00, /* n.s.e. . */
/* 3696 */ 0x28,0x00,0x22,0x00,0x46,0x00,0x6f,0x00, /* (.".F.o. */
/* 3704 */ 0x6e,0x00,0x74,0x00,0x73,0x00,0x22,0x00, /* n.t.s.". */
/* 3712 */ 0x29,0x00,0x20,0x00,0x61,0x00,0x6e,0x00, /* ). .a.n. */
/* 3720 */ 0x64,0x00,0x20,0x00,0x61,0x00,0x73,0x00, /* d. .a.s. */
/* 3728 */ 0x73,0x00,0x6f,0x00,0x63,0x00,0x69,0x00, /* s.o.c.i. */
/* 3736 */ 0x61,0x00,0x74,0x00,0x65,0x00,0x64,0x00, /* a.t.e.d. */
/* 3744 */ 0x20,0x00,0x64,0x00,0x6f,0x00,0x63,0x00, /* .d.o.c. */
/* 3752 */ 0x75,0x00,0x6d,0x00,0x65,0x00,0x6e,0x00, /* u.m.e.n. */
/* 3760 */ 0x74,0x00,0x61,0x00,0x74,0x00,0x69,0x00, /* t.a.t.i. */
/* 3768 */ 0x6f,0x00,0x6e,0x00,0x20,0x00,0x66,0x00, /* o.n. .f. */
/* 3776 */ 0x69,0x00,0x6c,0x00,0x65,0x00,0x73,0x00, /* i.l.e.s. */
/* 3784 */ 0x20,0x00,0x28,0x00,0x74,0x00,0x68,0x00, /* .(.t.h. */
/* 3792 */ 0x65,0x00,0x20,0x00,0x22,0x00,0x46,0x00, /* e. .".F. */
/* 3800 */ 0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00, /* o.n.t. . */
/* 3808 */ 0x53,0x00,0x6f,0x00,0x66,0x00,0x74,0x00, /* S.o.f.t. */
/* 3816 */ 0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00, /* w.a.r.e. */
/* 3824 */ 0x22,0x00,0x29,0x00,0x2c,0x00,0x20,0x00, /* ".).,. . */
/* 3832 */ 0x74,0x00,0x6f,0x00,0x20,0x00,0x72,0x00, /* t.o. .r. */
/* 3840 */ 0x65,0x00,0x70,0x00,0x72,0x00,0x6f,0x00, /* e.p.r.o. */
/* 3848 */ 0x64,0x00,0x75,0x00,0x63,0x00,0x65,0x00, /* d.u.c.e. */
/* 3856 */ 0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00, /* .a.n.d. */
/* 3864 */ 0x20,0x00,0x64,0x00,0x69,0x00,0x73,0x00, /* .d.i.s. */
/* 3872 */ 0x74,0x00,0x72,0x00,0x69,0x00,0x62,0x00, /* t.r.i.b. */
/* 3880 */ 0x75,0x00,0x74,0x00,0x65,0x00,0x20,0x00, /* u.t.e. . */
/* 3888 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 3896 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 3904 */ 0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00, /* .S.o.f. */
/* 3912 */ 0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00, /* t.w.a.r. */
/* 3920 */ 0x65,0x00,0x2c,0x00,0x20,0x00,0x69,0x00, /* e.,. .i. */
/* 3928 */ 0x6e,0x00,0x63,0x00,0x6c,0x00,0x75,0x00, /* n.c.l.u. */
/* 3936 */ 0x64,0x00,0x69,0x00,0x6e,0x00,0x67,0x00, /* d.i.n.g. */
/* 3944 */ 0x20,0x00,0x77,0x00,0x69,0x00,0x74,0x00, /* .w.i.t. */
/* 3952 */ 0x68,0x00,0x6f,0x00,0x75,0x00,0x74,0x00, /* h.o.u.t. */
/* 3960 */ 0x20,0x00,0x6c,0x00,0x69,0x00,0x6d,0x00, /* .l.i.m. */
/* 3968 */ 0x69,0x00,0x74,0x00,0x61,0x00,0x74,0x00, /* i.t.a.t. */
/* 3976 */ 0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00, /* i.o.n. . */
/* 3984 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 3992 */ 0x72,0x00,0x69,0x00,0x67,0x00,0x68,0x00, /* r.i.g.h. */
/* 4000 */ 0x74,0x00,0x73,0x00,0x20,0x00,0x74,0x00, /* t.s. .t. */
/* 4008 */ 0x6f,0x00,0x20,0x00,0x75,0x00,0x73,0x00, /* o. .u.s. */
/* 4016 */ 0x65,0x00,0x2c,0x00,0x20,0x00,0x63,0x00, /* e.,. .c. */
/* 4024 */ 0x6f,0x00,0x70,0x00,0x79,0x00,0x2c,0x00, /* o.p.y.,. */
/* 4032 */ 0x20,0x00,0x6d,0x00,0x65,0x00,0x72,0x00, /* .m.e.r. */
/* 4040 */ 0x67,0x00,0x65,0x00,0x2c,0x00,0x20,0x00, /* g.e.,. . */
/* 4048 */ 0x70,0x00,0x75,0x00,0x62,0x00,0x6c,0x00, /* p.u.b.l. */
/* 4056 */ 0x69,0x00,0x73,0x00,0x68,0x00,0x2c,0x00, /* i.s.h.,. */
/* 4064 */ 0x20,0x00,0x64,0x00,0x69,0x00,0x73,0x00, /* .d.i.s. */
/* 4072 */ 0x74,0x00,0x72,0x00,0x69,0x00,0x62,0x00, /* t.r.i.b. */
/* 4080 */ 0x75,0x00,0x74,0x00,0x65,0x00,0x2c,0x00, /* u.t.e.,. */
/* 4088 */ 0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00, /* .a.n.d. */
/* 4096 */ 0x2f,0x00,0x6f,0x00,0x72,0x00,0x20,0x00, /* /.o.r. . */
/* 4104 */ 0x73,0x00,0x65,0x00,0x6c,0x00,0x6c,0x00, /* s.e.l.l. */
/* 4112 */ 0x20,0x00,0x63,0x00,0x6f,0x00,0x70,0x00, /* .c.o.p. */
/* 4120 */ 0x69,0x00,0x65,0x00,0x73,0x00,0x20,0x00, /* i.e.s. . */
/* 4128 */ 0x6f,0x00,0x66,0x00,0x20,0x00,0x74,0x00, /* o.f. .t. */
/* 4136 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00, /* h.e. .F. */
/* 4144 */ 0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00, /* o.n.t. . */
/* 4152 */ 0x53,0x00,0x6f,0x00,0x66,0x00,0x74,0x00, /* S.o.f.t. */
/* 4160 */ 0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00, /* w.a.r.e. */
/* 4168 */ 0x2c,0x00,0x20,0x00,0x61,0x00,0x6e,0x00, /* ,. .a.n. */
/* 4176 */ 0x64,0x00,0x20,0x00,0x74,0x00,0x6f,0x00, /* d. .t.o. */
/* 4184 */ 0x20,0x00,0x70,0x00,0x65,0x00,0x72,0x00, /* .p.e.r. */
/* 4192 */ 0x6d,0x00,0x69,0x00,0x74,0x00,0x20,0x00, /* m.i.t. . */
/* 4200 */ 0x70,0x00,0x65,0x00,0x72,0x00,0x73,0x00, /* p.e.r.s. */
/* 4208 */ 0x6f,0x00,0x6e,0x00,0x73,0x00,0x20,0x00, /* o.n.s. . */
/* 4216 */ 0x74,0x00,0x6f,0x00,0x20,0x00,0x77,0x00, /* t.o. .w. */
/* 4224 */ 0x68,0x00,0x6f,0x00,0x6d,0x00,0x20,0x00, /* h.o.m. . */
/* 4232 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 4240 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 4248 */ 0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00, /* .S.o.f. */
/* 4256 */ 0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00, /* t.w.a.r. */
/* 4264 */ 0x65,0x00,0x20,0x00,0x69,0x00,0x73,0x00, /* e. .i.s. */
/* 4272 */ 0x20,0x00,0x66,0x00,0x75,0x00,0x72,0x00, /* .f.u.r. */
/* 4280 */ 0x6e,0x00,0x69,0x00,0x73,0x00,0x68,0x00, /* n.i.s.h. */
/* 4288 */ 0x65,0x00,0x64,0x00,0x20,0x00,0x74,0x00, /* e.d. .t. */
/* 4296 */ 0x6f,0x00,0x20,0x00,0x64,0x00,0x6f,0x00, /* o. .d.o. */
/* 4304 */ 0x20,0x00,0x73,0x00,0x6f,0x00,0x2c,0x00, /* .s.o.,. */
/* 4312 */ 0x20,0x00,0x73,0x00,0x75,0x00,0x62,0x00, /* .s.u.b. */
/* 4320 */ 0x6a,0x00,0x65,0x00,0x63,0x00,0x74,0x00, /* j.e.c.t. */
/* 4328 */ 0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00, /* .t.o. . */
/* 4336 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 4344 */ 0x66,0x00,0x6f,0x00,0x6c,0x00,0x6c,0x00, /* f.o.l.l. */
/* 4352 */ 0x6f,0x00,0x77,0x00,0x69,0x00,0x6e,0x00, /* o.w.i.n. */
/* 4360 */ 0x67,0x00,0x20,0x00,0x63,0x00,0x6f,0x00, /* g. .c.o. */
/* 4368 */ 0x6e,0x00,0x64,0x00,0x69,0x00,0x74,0x00, /* n.d.i.t. */
/* 4376 */ 0x69,0x00,0x6f,0x00,0x6e,0x00,0x73,0x00, /* i.o.n.s. */
/* 4384 */ 0x3a,0x00,0x0d,0x00,0x0a,0x00,0x0d,0x00, /* :....... */
/* 4392 */ 0x0a,0x00,0x54,0x00,0x68,0x00,0x65,0x00, /* ..T.h.e. */
/* 4400 */ 0x20,0x00,0x61,0x00,0x62,0x00,0x6f,0x00, /* .a.b.o. */
/* 4408 */ 0x76,0x00,0x65,0x00,0x20,0x00,0x63,0x00, /* v.e. .c. */
/* 4416 */ 0x6f,0x00,0x70,0x00,0x79,0x00,0x72,0x00, /* o.p.y.r. */
/* 4424 */ 0x69,0x00,0x67,0x00,0x68,0x00,0x74,0x00, /* i.g.h.t. */
/* 4432 */ 0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00, /* .a.n.d. */
/* 4440 */ 0x20,0x00,0x74,0x00,0x72,0x00,0x61,0x00, /* .t.r.a. */
/* 4448 */ 0x64,0x00,0x65,0x00,0x6d,0x00,0x61,0x00, /* d.e.m.a. */
/* 4456 */ 0x72,0x00,0x6b,0x00,0x20,0x00,0x6e,0x00, /* r.k. .n. */
/* 4464 */ 0x6f,0x00,0x74,0x00,0x69,0x00,0x63,0x00, /* o.t.i.c. */
/* 4472 */ 0x65,0x00,0x73,0x00,0x20,0x00,0x61,0x00, /* e.s. .a. */
/* 4480 */ 0x6e,0x00,0x64,0x00,0x20,0x00,0x74,0x00, /* n.d. .t. */
/* 4488 */ 0x68,0x00,0x69,0x00,0x73,0x00,0x20,0x00, /* h.i.s. . */
/* 4496 */ 0x70,0x00,0x65,0x00,0x72,0x00,0x6d,0x00, /* p.e.r.m. */
/* 4504 */ 0x69,0x00,0x73,0x00,0x73,0x00,0x69,0x00, /* i.s.s.i. */
/* 4512 */ 0x6f,0x00,0x6e,0x00,0x20,0x00,0x6e,0x00, /* o.n. .n. */
/* 4520 */ 0x6f,0x00,0x74,0x00,0x69,0x00,0x63,0x00, /* o.t.i.c. */
/* 4528 */ 0x65,0x00,0x20,0x00,0x73,0x00,0x68,0x00, /* e. .s.h. */
/* 4536 */ 0x61,0x00,0x6c,0x00,0x6c,0x00,0x20,0x00, /* a.l.l. . */
/* 4544 */ 0x62,0x00,0x65,0x00,0x20,0x00,0x69,0x00, /* b.e. .i. */
/* 4552 */ 0x6e,0x00,0x63,0x00,0x6c,0x00,0x75,0x00, /* n.c.l.u. */
/* 4560 */ 0x64,0x00,0x65,0x00,0x64,0x00,0x20,0x00, /* d.e.d. . */
/* 4568 */ 0x69,0x00,0x6e,0x00,0x20,0x00,0x61,0x00, /* i.n. .a. */
/* 4576 */ 0x6c,0x00,0x6c,0x00,0x20,0x00,0x63,0x00, /* l.l. .c. */
/* 4584 */ 0x6f,0x00,0x70,0x00,0x69,0x00,0x65,0x00, /* o.p.i.e. */
/* 4592 */ 0x73,0x00,0x20,0x00,0x6f,0x00,0x66,0x00, /* s. .o.f. */
/* 4600 */ 0x20,0x00,0x6f,0x00,0x6e,0x00,0x65,0x00, /* .o.n.e. */
/* 4608 */ 0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00, /* .o.r. . */
/* 4616 */ 0x6d,0x00,0x6f,0x00,0x72,0x00,0x65,0x00, /* m.o.r.e. */
/* 4624 */ 0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00, /* .o.f. . */
/* 4632 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 4640 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 4648 */ 0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00, /* .S.o.f. */
/* 4656 */ 0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00, /* t.w.a.r. */
/* 4664 */ 0x65,0x00,0x20,0x00,0x74,0x00,0x79,0x00, /* e. .t.y. */
/* 4672 */ 0x70,0x00,0x65,0x00,0x66,0x00,0x61,0x00, /* p.e.f.a. */
/* 4680 */ 0x63,0x00,0x65,0x00,0x73,0x00,0x2e,0x00, /* c.e.s... */
/* 4688 */ 0x0d,0x00,0x0a,0x00,0x0d,0x00,0x0a,0x00, /* ........ */
/* 4696 */ 0x54,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* T.h.e. . */
/* 4704 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 4712 */ 0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00, /* .S.o.f. */
/* 4720 */ 0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00, /* t.w.a.r. */
/* 4728 */ 0x65,0x00,0x20,0x00,0x6d,0x00,0x61,0x00, /* e. .m.a. */
/* 4736 */ 0x79,0x00,0x20,0x00,0x62,0x00,0x65,0x00, /* y. .b.e. */
/* 4744 */ 0x20,0x00,0x6d,0x00,0x6f,0x00,0x64,0x00, /* .m.o.d. */
/* 4752 */ 0x69,0x00,0x66,0x00,0x69,0x00,0x65,0x00, /* i.f.i.e. */
/* 4760 */ 0x64,0x00,0x2c,0x00,0x20,0x00,0x61,0x00, /* d.,. .a. */
/* 4768 */ 0x6c,0x00,0x74,0x00,0x65,0x00,0x72,0x00, /* l.t.e.r. */
/* 4776 */ 0x65,0x00,0x64,0x00,0x2c,0x00,0x20,0x00, /* e.d.,. . */
/* 4784 */ 0x6f,0x00,0x72,0x00,0x20,0x00,0x61,0x00, /* o.r. .a. */
/* 4792 */ 0x64,0x00,0x64,0x00,0x65,0x00,0x64,0x00, /* d.d.e.d. */
/* 4800 */ 0x20,0x00,0x74,0x00,0x6f,0x00,0x2c,0x00, /* .t.o.,. */
/* 4808 */ 0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00, /* .a.n.d. */
/* 4816 */ 0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00, /* .i.n. . */
/* 4824 */ 0x70,0x00,0x61,0x00,0x72,0x00,0x74,0x00, /* p.a.r.t. */
/* 4832 */ 0x69,0x00,0x63,0x00,0x75,0x00,0x6c,0x00, /* i.c.u.l. */
/* 4840 */ 0x61,0x00,0x72,0x00,0x20,0x00,0x74,0x00, /* a.r. .t. */
/* 4848 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x64,0x00, /* h.e. .d. */
/* 4856 */ 0x65,0x00,0x73,0x00,0x69,0x00,0x67,0x00, /* e.s.i.g. */
/* 4864 */ 0x6e,0x00,0x73,0x00,0x20,0x00,0x6f,0x00, /* n.s. .o. */
/* 4872 */ 0x66,0x00,0x20,0x00,0x67,0x00,0x6c,0x00, /* f. .g.l. */
/* 4880 */ 0x79,0x00,0x70,0x00,0x68,0x00,0x73,0x00, /* y.p.h.s. */
/* 4888 */ 0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00, /* .o.r. . */
/* 4896 */ 0x63,0x00,0x68,0x00,0x61,0x00,0x72,0x00, /* c.h.a.r. */
/* 4904 */ 0x61,0x00,0x63,0x00,0x74,0x00,0x65,0x00, /* a.c.t.e. */
/* 4912 */ 0x72,0x00,0x73,0x00,0x20,0x00,0x69,0x00, /* r.s. .i. */
/* 4920 */ 0x6e,0x00,0x20,0x00,0x74,0x00,0x68,0x00, /* n. .t.h. */
/* 4928 */ 0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00, /* e. .F.o. */
/* 4936 */ 0x6e,0x00,0x74,0x00,0x73,0x00,0x20,0x00, /* n.t.s. . */
/* 4944 */ 0x6d,0x00,0x61,0x00,0x79,0x00,0x20,0x00, /* m.a.y. . */
/* 4952 */ 0x62,0x00,0x65,0x00,0x20,0x00,0x6d,0x00, /* b.e. .m. */
/* 4960 */ 0x6f,0x00,0x64,0x00,0x69,0x00,0x66,0x00, /* o.d.i.f. */
/* 4968 */ 0x69,0x00,0x65,0x00,0x64,0x00,0x20,0x00, /* i.e.d. . */
/* 4976 */ 0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00, /* a.n.d. . */
/* 4984 */ 0x61,0x00,0x64,0x00,0x64,0x00,0x69,0x00, /* a.d.d.i. */
/* 4992 */ 0x74,0x00,0x69,0x00,0x6f,0x00,0x6e,0x00, /* t.i.o.n. */
/* 5000 */ 0x61,0x00,0x6c,0x00,0x20,0x00,0x67,0x00, /* a.l. .g. */
/* 5008 */ 0x6c,0x00,0x79,0x00,0x70,0x00,0x68,0x00, /* l.y.p.h. */
/* 5016 */ 0x73,0x00,0x20,0x00,0x6f,0x00,0x72,0x00, /* s. .o.r. */
/* 5024 */ 0x20,0x00,0x63,0x00,0x68,0x00,0x61,0x00, /* .c.h.a. */
/* 5032 */ 0x72,0x00,0x61,0x00,0x63,0x00,0x74,0x00, /* r.a.c.t. */
/* 5040 */ 0x65,0x00,0x72,0x00,0x73,0x00,0x20,0x00, /* e.r.s. . */
/* 5048 */ 0x6d,0x00,0x61,0x00,0x79,0x00,0x20,0x00, /* m.a.y. . */
/* 5056 */ 0x62,0x00,0x65,0x00,0x20,0x00,0x61,0x00, /* b.e. .a. */
/* 5064 */ 0x64,0x00,0x64,0x00,0x65,0x00,0x64,0x00, /* d.d.e.d. */
/* 5072 */ 0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00, /* .t.o. . */
/* 5080 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 5088 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 5096 */ 0x73,0x00,0x2c,0x00,0x20,0x00,0x6f,0x00, /* s.,. .o. */
/* 5104 */ 0x6e,0x00,0x6c,0x00,0x79,0x00,0x20,0x00, /* n.l.y. . */
/* 5112 */ 0x69,0x00,0x66,0x00,0x20,0x00,0x74,0x00, /* i.f. .t. */
/* 5120 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x66,0x00, /* h.e. .f. */
/* 5128 */ 0x6f,0x00,0x6e,0x00,0x74,0x00,0x73,0x00, /* o.n.t.s. */
/* 5136 */ 0x20,0x00,0x61,0x00,0x72,0x00,0x65,0x00, /* .a.r.e. */
/* 5144 */ 0x20,0x00,0x72,0x00,0x65,0x00,0x6e,0x00, /* .r.e.n. */
/* 5152 */ 0x61,0x00,0x6d,0x00,0x65,0x00,0x64,0x00, /* a.m.e.d. */
/* 5160 */ 0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00, /* .t.o. . */
/* 5168 */ 0x6e,0x00,0x61,0x00,0x6d,0x00,0x65,0x00, /* n.a.m.e. */
/* 5176 */ 0x73,0x00,0x20,0x00,0x6e,0x00,0x6f,0x00, /* s. .n.o. */
/* 5184 */ 0x74,0x00,0x20,0x00,0x63,0x00,0x6f,0x00, /* t. .c.o. */
/* 5192 */ 0x6e,0x00,0x74,0x00,0x61,0x00,0x69,0x00, /* n.t.a.i. */
/* 5200 */ 0x6e,0x00,0x69,0x00,0x6e,0x00,0x67,0x00, /* n.i.n.g. */
/* 5208 */ 0x20,0x00,0x65,0x00,0x69,0x00,0x74,0x00, /* .e.i.t. */
/* 5216 */ 0x68,0x00,0x65,0x00,0x72,0x00,0x20,0x00, /* h.e.r. . */
/* 5224 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 5232 */ 0x77,0x00,0x6f,0x00,0x72,0x00,0x64,0x00, /* w.o.r.d. */
/* 5240 */ 0x73,0x00,0x20,0x00,0x22,0x00,0x42,0x00, /* s. .".B. */
/* 5248 */ 0x69,0x00,0x74,0x00,0x73,0x00,0x74,0x00, /* i.t.s.t. */
/* 5256 */ 0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00, /* r.e.a.m. */
/* 5264 */ 0x22,0x00,0x20,0x00,0x6f,0x00,0x72,0x00, /* ". .o.r. */
/* 5272 */ 0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00, /* .t.h.e. */
/* 5280 */ 0x20,0x00,0x77,0x00,0x6f,0x00,0x72,0x00, /* .w.o.r. */
/* 5288 */ 0x64,0x00,0x20,0x00,0x22,0x00,0x56,0x00, /* d. .".V. */
/* 5296 */ 0x65,0x00,0x72,0x00,0x61,0x00,0x22,0x00, /* e.r.a.". */
/* 5304 */ 0x2e,0x00,0x0d,0x00,0x0a,0x00,0x0d,0x00, /* ........ */
/* 5312 */ 0x0a,0x00,0x54,0x00,0x68,0x00,0x69,0x00, /* ..T.h.i. */
/* 5320 */ 0x73,0x00,0x20,0x00,0x4c,0x00,0x69,0x00, /* s. .L.i. */
/* 5328 */ 0x63,0x00,0x65,0x00,0x6e,0x00,0x73,0x00, /* c.e.n.s. */
/* 5336 */ 0x65,0x00,0x20,0x00,0x62,0x00,0x65,0x00, /* e. .b.e. */
/* 5344 */ 0x63,0x00,0x6f,0x00,0x6d,0x00,0x65,0x00, /* c.o.m.e. */
/* 5352 */ 0x73,0x00,0x20,0x00,0x6e,0x00,0x75,0x00, /* s. .n.u. */
/* 5360 */ 0x6c,0x00,0x6c,0x00,0x20,0x00,0x61,0x00, /* l.l. .a. */
/* 5368 */ 0x6e,0x00,0x64,0x00,0x20,0x00,0x76,0x00, /* n.d. .v. */
/* 5376 */ 0x6f,0x00,0x69,0x00,0x64,0x00,0x20,0x00, /* o.i.d. . */
/* 5384 */ 0x74,0x00,0x6f,0x00,0x20,0x00,0x74,0x00, /* t.o. .t. */
/* 5392 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x65,0x00, /* h.e. .e. */
/* 5400 */ 0x78,0x00,0x74,0x00,0x65,0x00,0x6e,0x00, /* x.t.e.n. */
/* 5408 */ 0x74,0x00,0x20,0x00,0x61,0x00,0x70,0x00, /* t. .a.p. */
/* 5416 */ 0x70,0x00,0x6c,0x00,0x69,0x00,0x63,0x00, /* p.l.i.c. */
/* 5424 */ 0x61,0x00,0x62,0x00,0x6c,0x00,0x65,0x00, /* a.b.l.e. */
/* 5432 */ 0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00, /* .t.o. . */
/* 5440 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 5448 */ 0x73,0x00,0x20,0x00,0x6f,0x00,0x72,0x00, /* s. .o.r. */
/* 5456 */ 0x20,0x00,0x46,0x00,0x6f,0x00,0x6e,0x00, /* .F.o.n. */
/* 5464 */ 0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00, /* t. .S.o. */
/* 5472 */ 0x66,0x00,0x74,0x00,0x77,0x00,0x61,0x00, /* f.t.w.a. */
/* 5480 */ 0x72,0x00,0x65,0x00,0x20,0x00,0x74,0x00, /* r.e. .t. */
/* 5488 */ 0x68,0x00,0x61,0x00,0x74,0x00,0x20,0x00, /* h.a.t. . */
/* 5496 */ 0x68,0x00,0x61,0x00,0x73,0x00,0x20,0x00, /* h.a.s. . */
/* 5504 */ 0x62,0x00,0x65,0x00,0x65,0x00,0x6e,0x00, /* b.e.e.n. */
/* 5512 */ 0x20,0x00,0x6d,0x00,0x6f,0x00,0x64,0x00, /* .m.o.d. */
/* 5520 */ 0x69,0x00,0x66,0x00,0x69,0x00,0x65,0x00, /* i.f.i.e. */
/* 5528 */ 0x64,0x00,0x20,0x00,0x61,0x00,0x6e,0x00, /* d. .a.n. */
/* 5536 */ 0x64,0x00,0x20,0x00,0x69,0x00,0x73,0x00, /* d. .i.s. */
/* 5544 */ 0x20,0x00,0x64,0x00,0x69,0x00,0x73,0x00, /* .d.i.s. */
/* 5552 */ 0x74,0x00,0x72,0x00,0x69,0x00,0x62,0x00, /* t.r.i.b. */
/* 5560 */ 0x75,0x00,0x74,0x00,0x65,0x00,0x64,0x00, /* u.t.e.d. */
/* 5568 */ 0x20,0x00,0x75,0x00,0x6e,0x00,0x64,0x00, /* .u.n.d. */
/* 5576 */ 0x65,0x00,0x72,0x00,0x20,0x00,0x74,0x00, /* e.r. .t. */
/* 5584 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x22,0x00, /* h.e. .". */
/* 5592 */ 0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00, /* B.i.t.s. */
/* 5600 */ 0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00, /* t.r.e.a. */
/* 5608 */ 0x6d,0x00,0x20,0x00,0x56,0x00,0x65,0x00, /* m. .V.e. */
/* 5616 */ 0x72,0x00,0x61,0x00,0x22,0x00,0x20,0x00, /* r.a.". . */
/* 5624 */ 0x6e,0x00,0x61,0x00,0x6d,0x00,0x65,0x00, /* n.a.m.e. */
/* 5632 */ 0x73,0x00,0x2e,0x00,0x0d,0x00,0x0a,0x00, /* s....... */
/* 5640 */ 0x0d,0x00,0x0a,0x00,0x54,0x00,0x68,0x00, /* ....T.h. */
/* 5648 */ 0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00, /* e. .F.o. */
/* 5656 */ 0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00, /* n.t. .S. */
/* 5664 */ 0x6f,0x00,0x66,0x00,0x74,0x00,0x77,0x00, /* o.f.t.w. */
/* 5672 */ 0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00, /* a.r.e. . */
/* 5680 */ 0x6d,0x00,0x61,0x00,0x79,0x00,0x20,0x00, /* m.a.y. . */
/* 5688 */ 0x62,0x00,0x65,0x00,0x20,0x00,0x73,0x00, /* b.e. .s. */
/* 5696 */ 0x6f,0x00,0x6c,0x00,0x64,0x00,0x20,0x00, /* o.l.d. . */
/* 5704 */ 0x61,0x00,0x73,0x00,0x20,0x00,0x70,0x00, /* a.s. .p. */
/* 5712 */ 0x61,0x00,0x72,0x00,0x74,0x00,0x20,0x00, /* a.r.t. . */
/* 5720 */ 0x6f,0x00,0x66,0x00,0x20,0x00,0x61,0x00, /* o.f. .a. */
/* 5728 */ 0x20,0x00,0x6c,0x00,0x61,0x00,0x72,0x00, /* .l.a.r. */
/* 5736 */ 0x67,0x00,0x65,0x00,0x72,0x00,0x20,0x00, /* g.e.r. . */
/* 5744 */ 0x73,0x00,0x6f,0x00,0x66,0x00,0x74,0x00, /* s.o.f.t. */
/* 5752 */ 0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00, /* w.a.r.e. */
/* 5760 */ 0x20,0x00,0x70,0x00,0x61,0x00,0x63,0x00, /* .p.a.c. */
/* 5768 */ 0x6b,0x00,0x61,0x00,0x67,0x00,0x65,0x00, /* k.a.g.e. */
/* 5776 */ 0x20,0x00,0x62,0x00,0x75,0x00,0x74,0x00, /* .b.u.t. */
/* 5784 */ 0x20,0x00,0x6e,0x00,0x6f,0x00,0x20,0x00, /* .n.o. . */
/* 5792 */ 0x63,0x00,0x6f,0x00,0x70,0x00,0x79,0x00, /* c.o.p.y. */
/* 5800 */ 0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00, /* .o.f. . */
/* 5808 */ 0x6f,0x00,0x6e,0x00,0x65,0x00,0x20,0x00, /* o.n.e. . */
/* 5816 */ 0x6f,0x00,0x72,0x00,0x20,0x00,0x6d,0x00, /* o.r. .m. */
/* 5824 */ 0x6f,0x00,0x72,0x00,0x65,0x00,0x20,0x00, /* o.r.e. . */
/* 5832 */ 0x6f,0x00,0x66,0x00,0x20,0x00,0x74,0x00, /* o.f. .t. */
/* 5840 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00, /* h.e. .F. */
/* 5848 */ 0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00, /* o.n.t. . */
/* 5856 */ 0x53,0x00,0x6f,0x00,0x66,0x00,0x74,0x00, /* S.o.f.t. */
/* 5864 */ 0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00, /* w.a.r.e. */
/* 5872 */ 0x20,0x00,0x74,0x00,0x79,0x00,0x70,0x00, /* .t.y.p. */
/* 5880 */ 0x65,0x00,0x66,0x00,0x61,0x00,0x63,0x00, /* e.f.a.c. */
/* 5888 */ 0x65,0x00,0x73,0x00,0x20,0x00,0x6d,0x00, /* e.s. .m. */
/* 5896 */ 0x61,0x00,0x79,0x00,0x20,0x00,0x62,0x00, /* a.y. .b. */
/* 5904 */ 0x65,0x00,0x20,0x00,0x73,0x00,0x6f,0x00, /* e. .s.o. */
/* 5912 */ 0x6c,0x00,0x64,0x00,0x20,0x00,0x62,0x00, /* l.d. .b. */
/* 5920 */ 0x79,0x00,0x20,0x00,0x69,0x00,0x74,0x00, /* y. .i.t. */
/* 5928 */ 0x73,0x00,0x65,0x00,0x6c,0x00,0x66,0x00, /* s.e.l.f. */
/* 5936 */ 0x2e,0x00,0x0d,0x00,0x0a,0x00,0x0d,0x00, /* ........ */
/* 5944 */ 0x0a,0x00,0x54,0x00,0x48,0x00,0x45,0x00, /* ..T.H.E. */
/* 5952 */ 0x20,0x00,0x46,0x00,0x4f,0x00,0x4e,0x00, /* .F.O.N. */
/* 5960 */ 0x54,0x00,0x20,0x00,0x53,0x00,0x4f,0x00, /* T. .S.O. */
/* 5968 */ 0x46,0x00,0x54,0x00,0x57,0x00,0x41,0x00, /* F.T.W.A. */
/* 5976 */ 0x52,0x00,0x45,0x00,0x20,0x00,0x49,0x00, /* R.E. .I. */
/* 5984 */ 0x53,0x00,0x20,0x00,0x50,0x00,0x52,0x00, /* S. .P.R. */
/* 5992 */ 0x4f,0x00,0x56,0x00,0x49,0x00,0x44,0x00, /* O.V.I.D. */
/* 6000 */ 0x45,0x00,0x44,0x00,0x20,0x00,0x22,0x00, /* E.D. .". */
/* 6008 */ 0x41,0x00,0x53,0x00,0x20,0x00,0x49,0x00, /* A.S. .I. */
/* 6016 */ 0x53,0x00,0x22,0x00,0x2c,0x00,0x20,0x00, /* S.".,. . */
/* 6024 */ 0x57,0x00,0x49,0x00,0x54,0x00,0x48,0x00, /* W.I.T.H. */
/* 6032 */ 0x4f,0x00,0x55,0x00,0x54,0x00,0x20,0x00, /* O.U.T. . */
/* 6040 */ 0x57,0x00,0x41,0x00,0x52,0x00,0x52,0x00, /* W.A.R.R. */
/* 6048 */ 0x41,0x00,0x4e,0x00,0x54,0x00,0x59,0x00, /* A.N.T.Y. */
/* 6056 */ 0x20,0x00,0x4f,0x00,0x46,0x00,0x20,0x00, /* .O.F. . */
/* 6064 */ 0x41,0x00,0x4e,0x00,0x59,0x00,0x20,0x00, /* A.N.Y. . */
/* 6072 */ 0x4b,0x00,0x49,0x00,0x4e,0x00,0x44,0x00, /* K.I.N.D. */
/* 6080 */ 0x2c,0x00,0x20,0x00,0x45,0x00,0x58,0x00, /* ,. .E.X. */
/* 6088 */ 0x50,0x00,0x52,0x00,0x45,0x00,0x53,0x00, /* P.R.E.S. */
/* 6096 */ 0x53,0x00,0x20,0x00,0x4f,0x00,0x52,0x00, /* S. .O.R. */
/* 6104 */ 0x20,0x00,0x49,0x00,0x4d,0x00,0x50,0x00, /* .I.M.P. */
/* 6112 */ 0x4c,0x00,0x49,0x00,0x45,0x00,0x44,0x00, /* L.I.E.D. */
/* 6120 */ 0x2c,0x00,0x20,0x00,0x49,0x00,0x4e,0x00, /* ,. .I.N. */
/* 6128 */ 0x43,0x00,0x4c,0x00,0x55,0x00,0x44,0x00, /* C.L.U.D. */
/* 6136 */ 0x49,0x00,0x4e,0x00,0x47,0x00,0x20,0x00, /* I.N.G. . */
/* 6144 */ 0x42,0x00,0x55,0x00,0x54,0x00,0x20,0x00, /* B.U.T. . */
/* 6152 */ 0x4e,0x00,0x4f,0x00,0x54,0x00,0x20,0x00, /* N.O.T. . */
/* 6160 */ 0x4c,0x00,0x49,0x00,0x4d,0x00,0x49,0x00, /* L.I.M.I. */
/* 6168 */ 0x54,0x00,0x45,0x00,0x44,0x00,0x20,0x00, /* T.E.D. . */
/* 6176 */ 0x54,0x00,0x4f,0x00,0x20,0x00,0x41,0x00, /* T.O. .A. */
/* 6184 */ 0x4e,0x00,0x59,0x00,0x20,0x00,0x57,0x00, /* N.Y. .W. */
/* 6192 */ 0x41,0x00,0x52,0x00,0x52,0x00,0x41,0x00, /* A.R.R.A. */
/* 6200 */ 0x4e,0x00,0x54,0x00,0x49,0x00,0x45,0x00, /* N.T.I.E. */
/* 6208 */ 0x53,0x00,0x20,0x00,0x4f,0x00,0x46,0x00, /* S. .O.F. */
/* 6216 */ 0x20,0x00,0x4d,0x00,0x45,0x00,0x52,0x00, /* .M.E.R. */
/* 6224 */ 0x43,0x00,0x48,0x00,0x41,0x00,0x4e,0x00, /* C.H.A.N. */
/* 6232 */ 0x54,0x00,0x41,0x00,0x42,0x00,0x49,0x00, /* T.A.B.I. */
/* 6240 */ 0x4c,0x00,0x49,0x00,0x54,0x00,0x59,0x00, /* L.I.T.Y. */
/* 6248 */ 0x2c,0x00,0x20,0x00,0x46,0x00,0x49,0x00, /* ,. .F.I. */
/* 6256 */ 0x54,0x00,0x4e,0x00,0x45,0x00,0x53,0x00, /* T.N.E.S. */
/* 6264 */ 0x53,0x00,0x20,0x00,0x46,0x00,0x4f,0x00, /* S. .F.O. */
/* 6272 */ 0x52,0x00,0x20,0x00,0x41,0x00,0x20,0x00, /* R. .A. . */
/* 6280 */ 0x50,0x00,0x41,0x00,0x52,0x00,0x54,0x00, /* P.A.R.T. */
/* 6288 */ 0x49,0x00,0x43,0x00,0x55,0x00,0x4c,0x00, /* I.C.U.L. */
/* 6296 */ 0x41,0x00,0x52,0x00,0x20,0x00,0x50,0x00, /* A.R. .P. */
/* 6304 */ 0x55,0x00,0x52,0x00,0x50,0x00,0x4f,0x00, /* U.R.P.O. */
/* 6312 */ 0x53,0x00,0x45,0x00,0x20,0x00,0x41,0x00, /* S.E. .A. */
/* 6320 */ 0x4e,0x00,0x44,0x00,0x20,0x00,0x4e,0x00, /* N.D. .N. */
/* 6328 */ 0x4f,0x00,0x4e,0x00,0x49,0x00,0x4e,0x00, /* O.N.I.N. */
/* 6336 */ 0x46,0x00,0x52,0x00,0x49,0x00,0x4e,0x00, /* F.R.I.N. */
/* 6344 */ 0x47,0x00,0x45,0x00,0x4d,0x00,0x45,0x00, /* G.E.M.E. */
/* 6352 */ 0x4e,0x00,0x54,0x00,0x20,0x00,0x4f,0x00, /* N.T. .O. */
/* 6360 */ 0x46,0x00,0x20,0x00,0x43,0x00,0x4f,0x00, /* F. .C.O. */
/* 6368 */ 0x50,0x00,0x59,0x00,0x52,0x00,0x49,0x00, /* P.Y.R.I. */
/* 6376 */ 0x47,0x00,0x48,0x00,0x54,0x00,0x2c,0x00, /* G.H.T.,. */
/* 6384 */ 0x20,0x00,0x50,0x00,0x41,0x00,0x54,0x00, /* .P.A.T. */
/* 6392 */ 0x45,0x00,0x4e,0x00,0x54,0x00,0x2c,0x00, /* E.N.T.,. */
/* 6400 */ 0x20,0x00,0x54,0x00,0x52,0x00,0x41,0x00, /* .T.R.A. */
/* 6408 */ 0x44,0x00,0x45,0x00,0x4d,0x00,0x41,0x00, /* D.E.M.A. */
/* 6416 */ 0x52,0x00,0x4b,0x00,0x2c,0x00,0x20,0x00, /* R.K.,. . */
/* 6424 */ 0x4f,0x00,0x52,0x00,0x20,0x00,0x4f,0x00, /* O.R. .O. */
/* 6432 */ 0x54,0x00,0x48,0x00,0x45,0x00,0x52,0x00, /* T.H.E.R. */
/* 6440 */ 0x20,0x00,0x52,0x00,0x49,0x00,0x47,0x00, /* .R.I.G. */
/* 6448 */ 0x48,0x00,0x54,0x00,0x2e,0x00,0x20,0x00, /* H.T... . */
/* 6456 */ 0x49,0x00,0x4e,0x00,0x20,0x00,0x4e,0x00, /* I.N. .N. */
/* 6464 */ 0x4f,0x00,0x20,0x00,0x45,0x00,0x56,0x00, /* O. .E.V. */
/* 6472 */ 0x45,0x00,0x4e,0x00,0x54,0x00,0x20,0x00, /* E.N.T. . */
/* 6480 */ 0x53,0x00,0x48,0x00,0x41,0x00,0x4c,0x00, /* S.H.A.L. */
/* 6488 */ 0x4c,0x00,0x20,0x00,0x42,0x00,0x49,0x00, /* L. .B.I. */
/* 6496 */ 0x54,0x00,0x53,0x00,0x54,0x00,0x52,0x00, /* T.S.T.R. */
/* 6504 */ 0x45,0x00,0x41,0x00,0x4d,0x00,0x20,0x00, /* E.A.M. . */
/* 6512 */ 0x4f,0x00,0x52,0x00,0x20,0x00,0x54,0x00, /* O.R. .T. */
/* 6520 */ 0x48,0x00,0x45,0x00,0x20,0x00,0x47,0x00, /* H.E. .G. */
/* 6528 */ 0x4e,0x00,0x4f,0x00,0x4d,0x00,0x45,0x00, /* N.O.M.E. */
/* 6536 */ 0x20,0x00,0x46,0x00,0x4f,0x00,0x55,0x00, /* .F.O.U. */
/* 6544 */ 0x4e,0x00,0x44,0x00,0x41,0x00,0x54,0x00, /* N.D.A.T. */
/* 6552 */ 0x49,0x00,0x4f,0x00,0x4e,0x00,0x20,0x00, /* I.O.N. . */
/* 6560 */ 0x42,0x00,0x45,0x00,0x20,0x00,0x4c,0x00, /* B.E. .L. */
/* 6568 */ 0x49,0x00,0x41,0x00,0x42,0x00,0x4c,0x00, /* I.A.B.L. */
/* 6576 */ 0x45,0x00,0x20,0x00,0x46,0x00,0x4f,0x00, /* E. .F.O. */
/* 6584 */ 0x52,0x00,0x20,0x00,0x41,0x00,0x4e,0x00, /* R. .A.N. */
/* 6592 */ 0x59,0x00,0x20,0x00,0x43,0x00,0x4c,0x00, /* Y. .C.L. */
/* 6600 */ 0x41,0x00,0x49,0x00,0x4d,0x00,0x2c,0x00, /* A.I.M.,. */
/* 6608 */ 0x20,0x00,0x44,0x00,0x41,0x00,0x4d,0x00, /* .D.A.M. */
/* 6616 */ 0x41,0x00,0x47,0x00,0x45,0x00,0x53,0x00, /* A.G.E.S. */
/* 6624 */ 0x20,0x00,0x4f,0x00,0x52,0x00,0x20,0x00, /* .O.R. . */
/* 6632 */ 0x4f,0x00,0x54,0x00,0x48,0x00,0x45,0x00, /* O.T.H.E. */
/* 6640 */ 0x52,0x00,0x20,0x00,0x4c,0x00,0x49,0x00, /* R. .L.I. */
/* 6648 */ 0x41,0x00,0x42,0x00,0x49,0x00,0x4c,0x00, /* A.B.I.L. */
/* 6656 */ 0x49,0x00,0x54,0x00,0x59,0x00,0x2c,0x00, /* I.T.Y.,. */
/* 6664 */ 0x20,0x00,0x49,0x00,0x4e,0x00,0x43,0x00, /* .I.N.C. */
/* 6672 */ 0x4c,0x00,0x55,0x00,0x44,0x00,0x49,0x00, /* L.U.D.I. */
/* 6680 */ 0x4e,0x00,0x47,0x00,0x20,0x00,0x41,0x00, /* N.G. .A. */
/* 6688 */ 0x4e,0x00,0x59,0x00,0x20,0x00,0x47,0x00, /* N.Y. .G. */
/* 6696 */ 0x45,0x00,0x4e,0x00,0x45,0x00,0x52,0x00, /* E.N.E.R. */
/* 6704 */ 0x41,0x00,0x4c,0x00,0x2c,0x00,0x20,0x00, /* A.L.,. . */
/* 6712 */ 0x53,0x00,0x50,0x00,0x45,0x00,0x43,0x00, /* S.P.E.C. */
/* 6720 */ 0x49,0x00,0x41,0x00,0x4c,0x00,0x2c,0x00, /* I.A.L.,. */
/* 6728 */ 0x20,0x00,0x49,0x00,0x4e,0x00,0x44,0x00, /* .I.N.D. */
/* 6736 */ 0x49,0x00,0x52,0x00,0x45,0x00,0x43,0x00, /* I.R.E.C. */
/* 6744 */ 0x54,0x00,0x2c,0x00,0x20,0x00,0x49,0x00, /* T.,. .I. */
/* 6752 */ 0x4e,0x00,0x43,0x00,0x49,0x00,0x44,0x00, /* N.C.I.D. */
/* 6760 */ 0x45,0x00,0x4e,0x00,0x54,0x00,0x41,0x00, /* E.N.T.A. */
/* 6768 */ 0x4c,0x00,0x2c,0x00,0x20,0x00,0x4f,0x00, /* L.,. .O. */
/* 6776 */ 0x52,0x00,0x20,0x00,0x43,0x00,0x4f,0x00, /* R. .C.O. */
/* 6784 */ 0x4e,0x00,0x53,0x00,0x45,0x00,0x51,0x00, /* N.S.E.Q. */
/* 6792 */ 0x55,0x00,0x45,0x00,0x4e,0x00,0x54,0x00, /* U.E.N.T. */
/* 6800 */ 0x49,0x00,0x41,0x00,0x4c,0x00,0x20,0x00, /* I.A.L. . */
/* 6808 */ 0x44,0x00,0x41,0x00,0x4d,0x00,0x41,0x00, /* D.A.M.A. */
/* 6816 */ 0x47,0x00,0x45,0x00,0x53,0x00,0x2c,0x00, /* G.E.S.,. */
/* 6824 */ 0x20,0x00,0x57,0x00,0x48,0x00,0x45,0x00, /* .W.H.E. */
/* 6832 */ 0x54,0x00,0x48,0x00,0x45,0x00,0x52,0x00, /* T.H.E.R. */
/* 6840 */ 0x20,0x00,0x49,0x00,0x4e,0x00,0x20,0x00, /* .I.N. . */
/* 6848 */ 0x41,0x00,0x4e,0x00,0x20,0x00,0x41,0x00, /* A.N. .A. */
/* 6856 */ 0x43,0x00,0x54,0x00,0x49,0x00,0x4f,0x00, /* C.T.I.O. */
/* 6864 */ 0x4e,0x00,0x20,0x00,0x4f,0x00,0x46,0x00, /* N. .O.F. */
/* 6872 */ 0x20,0x00,0x43,0x00,0x4f,0x00,0x4e,0x00, /* .C.O.N. */
/* 6880 */ 0x54,0x00,0x52,0x00,0x41,0x00,0x43,0x00, /* T.R.A.C. */
/* 6888 */ 0x54,0x00,0x2c,0x00,0x20,0x00,0x54,0x00, /* T.,. .T. */
/* 6896 */ 0x4f,0x00,0x52,0x00,0x54,0x00,0x20,0x00, /* O.R.T. . */
/* 6904 */ 0x4f,0x00,0x52,0x00,0x20,0x00,0x4f,0x00, /* O.R. .O. */
/* 6912 */ 0x54,0x00,0x48,0x00,0x45,0x00,0x52,0x00, /* T.H.E.R. */
/* 6920 */ 0x57,0x00,0x49,0x00,0x53,0x00,0x45,0x00, /* W.I.S.E. */
/* 6928 */ 0x2c,0x00,0x20,0x00,0x41,0x00,0x52,0x00, /* ,. .A.R. */
/* 6936 */ 0x49,0x00,0x53,0x00,0x49,0x00,0x4e,0x00, /* I.S.I.N. */
/* 6944 */ 0x47,0x00,0x20,0x00,0x46,0x00,0x52,0x00, /* G. .F.R. */
/* 6952 */ 0x4f,0x00,0x4d,0x00,0x2c,0x00,0x20,0x00, /* O.M.,. . */
/* 6960 */ 0x4f,0x00,0x55,0x00,0x54,0x00,0x20,0x00, /* O.U.T. . */
/* 6968 */ 0x4f,0x00,0x46,0x00,0x20,0x00,0x54,0x00, /* O.F. .T. */
/* 6976 */ 0x48,0x00,0x45,0x00,0x20,0x00,0x55,0x00, /* H.E. .U. */
/* 6984 */ 0x53,0x00,0x45,0x00,0x20,0x00,0x4f,0x00, /* S.E. .O. */
/* 6992 */ 0x52,0x00,0x20,0x00,0x49,0x00,0x4e,0x00, /* R. .I.N. */
/* 7000 */ 0x41,0x00,0x42,0x00,0x49,0x00,0x4c,0x00, /* A.B.I.L. */
/* 7008 */ 0x49,0x00,0x54,0x00,0x59,0x00,0x20,0x00, /* I.T.Y. . */
/* 7016 */ 0x54,0x00,0x4f,0x00,0x20,0x00,0x55,0x00, /* T.O. .U. */
/* 7024 */ 0x53,0x00,0x45,0x00,0x20,0x00,0x54,0x00, /* S.E. .T. */
/* 7032 */ 0x48,0x00,0x45,0x00,0x20,0x00,0x46,0x00, /* H.E. .F. */
/* 7040 */ 0x4f,0x00,0x4e,0x00,0x54,0x00,0x20,0x00, /* O.N.T. . */
/* 7048 */ 0x53,0x00,0x4f,0x00,0x46,0x00,0x54,0x00, /* S.O.F.T. */
/* 7056 */ 0x57,0x00,0x41,0x00,0x52,0x00,0x45,0x00, /* W.A.R.E. */
/* 7064 */ 0x20,0x00,0x4f,0x00,0x52,0x00,0x20,0x00, /* .O.R. . */
/* 7072 */ 0x46,0x00,0x52,0x00,0x4f,0x00,0x4d,0x00, /* F.R.O.M. */
/* 7080 */ 0x20,0x00,0x4f,0x00,0x54,0x00,0x48,0x00, /* .O.T.H. */
/* 7088 */ 0x45,0x00,0x52,0x00,0x20,0x00,0x44,0x00, /* E.R. .D. */
/* 7096 */ 0x45,0x00,0x41,0x00,0x4c,0x00,0x49,0x00, /* E.A.L.I. */
/* 7104 */ 0x4e,0x00,0x47,0x00,0x53,0x00,0x20,0x00, /* N.G.S. . */
/* 7112 */ 0x49,0x00,0x4e,0x00,0x20,0x00,0x54,0x00, /* I.N. .T. */
/* 7120 */ 0x48,0x00,0x45,0x00,0x20,0x00,0x46,0x00, /* H.E. .F. */
/* 7128 */ 0x4f,0x00,0x4e,0x00,0x54,0x00,0x20,0x00, /* O.N.T. . */
/* 7136 */ 0x53,0x00,0x4f,0x00,0x46,0x00,0x54,0x00, /* S.O.F.T. */
/* 7144 */ 0x57,0x00,0x41,0x00,0x52,0x00,0x45,0x00, /* W.A.R.E. */
/* 7152 */ 0x2e,0x00,0x0d,0x00,0x0a,0x00,0x0d,0x00, /* ........ */
/* 7160 */ 0x0a,0x00,0x45,0x00,0x78,0x00,0x63,0x00, /* ..E.x.c. */
/* 7168 */ 0x65,0x00,0x70,0x00,0x74,0x00,0x20,0x00, /* e.p.t. . */
/* 7176 */ 0x61,0x00,0x73,0x00,0x20,0x00,0x63,0x00, /* a.s. .c. */
/* 7184 */ 0x6f,0x00,0x6e,0x00,0x74,0x00,0x61,0x00, /* o.n.t.a. */
/* 7192 */ 0x69,0x00,0x6e,0x00,0x65,0x00,0x64,0x00, /* i.n.e.d. */
/* 7200 */ 0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00, /* .i.n. . */
/* 7208 */ 0x74,0x00,0x68,0x00,0x69,0x00,0x73,0x00, /* t.h.i.s. */
/* 7216 */ 0x20,0x00,0x6e,0x00,0x6f,0x00,0x74,0x00, /* .n.o.t. */
/* 7224 */ 0x69,0x00,0x63,0x00,0x65,0x00,0x2c,0x00, /* i.c.e.,. */
/* 7232 */ 0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00, /* .t.h.e. */
/* 7240 */ 0x20,0x00,0x6e,0x00,0x61,0x00,0x6d,0x00, /* .n.a.m. */
/* 7248 */ 0x65,0x00,0x73,0x00,0x20,0x00,0x6f,0x00, /* e.s. .o. */
/* 7256 */ 0x66,0x00,0x20,0x00,0x47,0x00,0x6e,0x00, /* f. .G.n. */
/* 7264 */ 0x6f,0x00,0x6d,0x00,0x65,0x00,0x2c,0x00, /* o.m.e.,. */
/* 7272 */ 0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00, /* .t.h.e. */
/* 7280 */ 0x20,0x00,0x47,0x00,0x6e,0x00,0x6f,0x00, /* .G.n.o. */
/* 7288 */ 0x6d,0x00,0x65,0x00,0x20,0x00,0x46,0x00, /* m.e. .F. */
/* 7296 */ 0x6f,0x00,0x75,0x00,0x6e,0x00,0x64,0x00, /* o.u.n.d. */
/* 7304 */ 0x61,0x00,0x74,0x00,0x69,0x00,0x6f,0x00, /* a.t.i.o. */
/* 7312 */ 0x6e,0x00,0x2c,0x00,0x20,0x00,0x61,0x00, /* n.,. .a. */
/* 7320 */ 0x6e,0x00,0x64,0x00,0x20,0x00,0x42,0x00, /* n.d. .B. */
/* 7328 */ 0x69,0x00,0x74,0x00,0x73,0x00,0x74,0x00, /* i.t.s.t. */
/* 7336 */ 0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00, /* r.e.a.m. */
/* 7344 */ 0x20,0x00,0x49,0x00,0x6e,0x00,0x63,0x00, /* .I.n.c. */
/* 7352 */ 0x2e,0x00,0x2c,0x00,0x20,0x00,0x73,0x00, /* ..,. .s. */
/* 7360 */ 0x68,0x00,0x61,0x00,0x6c,0x00,0x6c,0x00, /* h.a.l.l. */
/* 7368 */ 0x20,0x00,0x6e,0x00,0x6f,0x00,0x74,0x00, /* .n.o.t. */
/* 7376 */ 0x20,0x00,0x62,0x00,0x65,0x00,0x20,0x00, /* .b.e. . */
/* 7384 */ 0x75,0x00,0x73,0x00,0x65,0x00,0x64,0x00, /* u.s.e.d. */
/* 7392 */ 0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00, /* .i.n. . */
/* 7400 */ 0x61,0x00,0x64,0x00,0x76,0x00,0x65,0x00, /* a.d.v.e. */
/* 7408 */ 0x72,0x00,0x74,0x00,0x69,0x00,0x73,0x00, /* r.t.i.s. */
/* 7416 */ 0x69,0x00,0x6e,0x00,0x67,0x00,0x20,0x00, /* i.n.g. . */
/* 7424 */ 0x6f,0x00,0x72,0x00,0x20,0x00,0x6f,0x00, /* o.r. .o. */
/* 7432 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x72,0x00, /* t.h.e.r. */
/* 7440 */ 0x77,0x00,0x69,0x00,0x73,0x00,0x65,0x00, /* w.i.s.e. */
/* 7448 */ 0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00, /* .t.o. . */
/* 7456 */ 0x70,0x00,0x72,0x00,0x6f,0x00,0x6d,0x00, /* p.r.o.m. */
/* 7464 */ 0x6f,0x00,0x74,0x00,0x65,0x00,0x20,0x00, /* o.t.e. . */
/* 7472 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00, /* t.h.e. . */
/* 7480 */ 0x73,0x00,0x61,0x00,0x6c,0x00,0x65,0x00, /* s.a.l.e. */
/* 7488 */ 0x2c,0x00,0x20,0x00,0x75,0x00,0x73,0x00, /* ,. .u.s. */
/* 7496 */ 0x65,0x00,0x20,0x00,0x6f,0x00,0x72,0x00, /* e. .o.r. */
/* 7504 */ 0x20,0x00,0x6f,0x00,0x74,0x00,0x68,0x00, /* .o.t.h. */
/* 7512 */ 0x65,0x00,0x72,0x00,0x20,0x00,0x64,0x00, /* e.r. .d. */
/* 7520 */ 0x65,0x00,0x61,0x00,0x6c,0x00,0x69,0x00, /* e.a.l.i. */
/* 7528 */ 0x6e,0x00,0x67,0x00,0x73,0x00,0x20,0x00, /* n.g.s. . */
/* 7536 */ 0x69,0x00,0x6e,0x00,0x20,0x00,0x74,0x00, /* i.n. .t. */
/* 7544 */ 0x68,0x00,0x69,0x00,0x73,0x00,0x20,0x00, /* h.i.s. . */
/* 7552 */ 0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00, /* F.o.n.t. */
/* 7560 */ 0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00, /* .S.o.f. */
/* 7568 */ 0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00, /* t.w.a.r. */
/* 7576 */ 0x65,0x00,0x20,0x00,0x77,0x00,0x69,0x00, /* e. .w.i. */
/* 7584 */ 0x74,0x00,0x68,0x00,0x6f,0x00,0x75,0x00, /* t.h.o.u. */
/* 7592 */ 0x74,0x00,0x20,0x00,0x70,0x00,0x72,0x00, /* t. .p.r. */
/* 7600 */ 0x69,0x00,0x6f,0x00,0x72,0x00,0x20,0x00, /* i.o.r. . */
/* 7608 */ 0x77,0x00,0x72,0x00,0x69,0x00,0x74,0x00, /* w.r.i.t. */
/* 7616 */ 0x74,0x00,0x65,0x00,0x6e,0x00,0x20,0x00, /* t.e.n. . */
/* 7624 */ 0x61,0x00,0x75,0x00,0x74,0x00,0x68,0x00, /* a.u.t.h. */
/* 7632 */ 0x6f,0x00,0x72,0x00,0x69,0x00,0x7a,0x00, /* o.r.i.z. */
/* 7640 */ 0x61,0x00,0x74,0x00,0x69,0x00,0x6f,0x00, /* a.t.i.o. */
/* 7648 */ 0x6e,0x00,0x20,0x00,0x66,0x00,0x72,0x00, /* n. .f.r. */
/* 7656 */ 0x6f,0x00,0x6d,0x00,0x20,0x00,0x74,0x00, /* o.m. .t. */
/* 7664 */ 0x68,0x00,0x65,0x00,0x20,0x00,0x47,0x00, /* h.e. .G. */
/* 7672 */ 0x6e,0x00,0x6f,0x00,0x6d,0x00,0x65,0x00, /* n.o.m.e. */
/* 7680 */ 0x20,0x00,0x46,0x00,0x6f,0x00,0x75,0x00, /* .F.o.u. */
/* 7688 */ 0x6e,0x00,0x64,0x00,0x61,0x00,0x74,0x00, /* n.d.a.t. */
/* 7696 */ 0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00, /* i.o.n. . */
/* 7704 */ 0x6f,0x00,0x72,0x00,0x20,0x00,0x42,0x00, /* o.r. .B. */
/* 7712 */ 0x69,0x00,0x74,0x00,0x73,0x00,0x74,0x00, /* i.t.s.t. */
/* 7720 */ 0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00, /* r.e.a.m. */
/* 7728 */ 0x20,0x00,0x49,0x00,0x6e,0x00,0x63,0x00, /* .I.n.c. */
/* 7736 */ 0x2e,0x00,0x2c,0x00,0x20,0x00,0x72,0x00, /* ..,. .r. */
/* 7744 */ 0x65,0x00,0x73,0x00,0x70,0x00,0x65,0x00, /* e.s.p.e. */
/* 7752 */ 0x63,0x00,0x74,0x00,0x69,0x00,0x76,0x00, /* c.t.i.v. */
/* 7760 */ 0x65,0x00,0x6c,0x00,0x79,0x00,0x2e,0x00, /* e.l.y... */
/* 7768 */ 0x20,0x00,0x46,0x00,0x6f,0x00,0x72,0x00, /* .F.o.r. */
/* 7776 */ 0x20,0x00,0x66,0x00,0x75,0x00,0x72,0x00, /* .f.u.r. */
/* 7784 */ 0x74,0x00,0x68,0x00,0x65,0x00,0x72,0x00, /* t.h.e.r. */
/* 7792 */ 0x20,0x00,0x69,0x00,0x6e,0x00,0x66,0x00, /* .i.n.f. */
/* 7800 */ 0x6f,0x00,0x72,0x00,0x6d,0x00,0x61,0x00, /* o.r.m.a. */
/* 7808 */ 0x74,0x00,0x69,0x00,0x6f,0x00,0x6e,0x00, /* t.i.o.n. */
/* 7816 */ 0x2c,0x00,0x20,0x00,0x63,0x00,0x6f,0x00, /* ,. .c.o. */
/* 7824 */ 0x6e,0x00,0x74,0x00,0x61,0x00,0x63,0x00, /* n.t.a.c. */