home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / cool / cool.asm next >
Assembly Source File  |  1993-12-21  |  78KB  |  1,173 lines

  1. ;                                         ┬                                   ┬
  2. ; COOL!.COM                               │ Call GENIAAL BBS 2 for more info: │
  3. ;                                         │ +31-2294-2959/3154                │
  4. ; Written by Michiel Ouwehand             ┴                                   ┴
  5. ; Sample program of a small BBS advert, requires VGA and a 8086.
  6. ;
  7. ;<]──────────────────────────────────────────────────────────────────────────[>
  8. ;
  9. ; Note: This is only the first EXE program I wrote, so I had to rip the init
  10. ;       stuff from REN-93.ASM, thanks Renaissance!
  11. ;
  12. ;<]──────────────────────────────────────────────────────────────────────────[>
  13. ;
  14. ; Warning: This program may look very big after assembling and linking, but it
  15. ; reduces size humoungously after using programs like PKLITE, LZEXE, DATADIET
  16. ;
  17. ;<]──────────────────────────────────────────────────────────────────────────[>
  18. ;
  19. ; Contact me at: (InterNet) michiel@progsup.tess.wlink.nl
  20. ;                  (FidNet) 2:2802/108.11
  21. ;
  22. ; Assembled using: TASM 3.1
  23. ; Image processing utility programs compiled with: Borland C++ 3.1
  24. ;
  25.  
  26. ;.model tiny
  27.  
  28. CODE    SEGMENT                                 ; Now, open code segment
  29.         ASSUME CS:CODE, DS:CODE                 ; I've seen this before
  30.  
  31.         org     100h
  32.  
  33. Start:
  34.         CLD                                     ; Clear direction
  35.         MOV     AX, CS                          ; Allright, code segment...
  36.         MOV     DS, AX                          ; ...is data segment
  37.  
  38.         XOR     BX, BX                          ; Check for VGA
  39.         MOV     AX, 01A00h                      ; Get mode support byte
  40.         INT     10h                             ; Video function
  41.         CMP     BL, 7                           ; This is the least we need
  42.         JGE     VGAPresent                      ; VGA is present
  43.  
  44.         MOV     DX, OFFSET NoVGA                ; Offset of error message
  45.         MOV     AH, 9                           ; Show message function
  46.         INT     21h                             ; Show it
  47.         MOV     AX, 4CFFh                       ; Exit program
  48.         INT     21h                             ; And exit
  49.  
  50. VGAPresent:
  51.         MOV     SI, OFFSET Screen1              ; Reading from packed font
  52.         MOV     AX, CS                          ; Going to CS/DS for depacked font
  53.         MOV     ES, AX                          ; The destination segment
  54.         MOV     DI, OFFSET FontData             ; To the depacked font
  55.         MOV     CX, 6695                        ; Converting 6695 bytes
  56.  
  57. TWOTOEIGHT:
  58.         PUSH    CX                              ; Save CX
  59.         XOR     BX, BX                          ; 0 Bytes to shift this time
  60.         MOV     CX, 4                           ; 4 Times 2 bits in a byte
  61.         MOV     BL, [SI]                        ; Get one byte
  62.         CMP     BL, 160                         ; Are we changing table?
  63.         JNE     NOPROBLEM                       ; Nope
  64.         ;
  65.         ; <<*!*! Warning !*!*>>
  66.         ;
  67.         ; What I just did with that compare to 160 *_*VERY*_* groce... That's
  68.         ; why I used it. The number 160 only seems to be present in the line
  69.         ; line numbers bitmap and thus is a sort of marker.
  70.         ;
  71.         MOV     byte ptr [ConvertTable+1], 109
  72.         MOV     byte ptr [ConvertTable+2], 129
  73.         MOV     byte ptr [ConvertTable+3], 145
  74. NOPROBLEM:
  75.         INC     SI                              ; Next byte next time
  76. FOURBYTESOUT:
  77.         PUSH    CX                              ; And again a loop
  78.         MOV     CL, BH                          ; Number of bytes to rotate
  79.         MOV     DL, 3                           ; 3 is %00000011
  80.         SHL     DL, CL                          ; Now, the mask for filter
  81.         MOV     AL, BL                          ; (We may *not* touch BL!)
  82.         AND     AL, DL                          ; Now, filter bits out of BL
  83.         SHR     AL, CL                          ; And rotate (move bits to right)
  84.         CALL    Convert                         ; Convert to normal type
  85.         STOSB                                   ; Store in destination
  86.         ADD     BH, 2                           ; Next time 2 bits more
  87.         POP     CX                              ; Save for this loop
  88.         LOOP    FOURBYTESOUT                    ; And loop
  89.  
  90.         POP     CX                              ; CX is also used for SHR
  91.         LOOP    TWOTOEIGHT                      ; Convert next byte
  92.  
  93. ;
  94. ;  Set Video mode
  95. ;
  96.  
  97.         MOV     AX, 13h                         ; Graphics mode
  98.         INT     10h                             ; Do it!
  99.  
  100. ;
  101. ;  Set palette
  102. ;
  103.  
  104.         MOV     DX, 03C8h                       ; Port 3C8 for palette
  105.         XOR     AL, AL                          ; We'll send 0 through the port
  106.         OUT     DX, AL                          ; Start with colour 0
  107.         INC     DX                              ; Next port is data port
  108.  
  109.         MOV     CX, 64                          ; 64 Grayshades
  110. SETONE:
  111.         OUT     DX, AL                          ; One byte
  112.         OUT     DX, AL                          ; One byte
  113.         OUT     DX, AL                          ; One byte
  114.         INC     AL                              ; One grayshade up
  115.         LOOP    SETONE                          ; And go on
  116.  
  117.         MOV     CX, 96                          ; 96 Bytes for logo palette
  118.         MOV     BX, 0                           ; Internal counter
  119. SETLOGO:
  120.         MOV     AL, [LogoPal+BX]                ; Get Byte
  121.         INC     BX                              ; Next colour next time
  122.         OUT     DX, AL                          ; And send it
  123.         LOOP    SETLOGO                         ; Next one
  124.  
  125.         XOR     AL, AL                          ; Clear output
  126.         MOV     CX, 64                          ; 64 Grayshades
  127. SETTTONE:
  128.         OUT     DX, AL                          ; One byte (only red is set)
  129.         INC     AL                              ; One redshade up
  130.         PUSH    AX                              ; Save AL
  131.         XOR     AL, AL                          ; Clear it
  132.         OUT     DX, AL                          ; One byte
  133.         OUT     DX, AL                          ; One byte
  134.         POP     AX                              ; Restore AL
  135.         LOOP    SETTTONE                        ; And go on
  136.  
  137. ;
  138. ; Prepare first screen
  139. ;
  140.  
  141.         MOV     AX, CS                          ; Segment of screen 1...
  142.         MOV     ES, AX                          ; ...in ES
  143.         MOV     DI, OFFSET Screen1              ; Offset of screen 1
  144.         MOV     CX, 3840                        ; Number of words to clear
  145.         XOR     AX, AX                          ; Fill with 0's
  146.         REP     STOSW                           ; And clear it
  147.  
  148.         MOV     DI, OFFSET Screen1              ; Show on screen 1
  149.         CALL    ShowText                        ; Show it
  150.  
  151.         MOV     DI, 6457                        ; Starting offset
  152.         MOV     SI, OFFSET Mixer                ; The offset
  153.         MOV     CX, 36                          ; 36 Lines in LOGO
  154.         MOV     DX, 207                         ; Bytes per line
  155.         CALL    MoveToScreen                    ; Show this
  156.  
  157.         MOV     DI, 44869                       ; Starting offset
  158.         MOV     SI, OFFSET FontData+21312       ; The offset
  159.         MOV     CX, 18                          ; 18 Lines
  160.         MOV     DX, 108                         ; 108 Bytes-a-line
  161.         PUSH    DX CX SI                        ; Save most of it
  162.         CALL    MoveToScreen                    ; Show it
  163.  
  164.         POP     SI CX DX                        ; Restore stuff
  165.         MOV     DI, 51589                       ; Starting offset
  166.         CALL    MoveToScreen                    ; Show it
  167.  
  168.         MOV     SI, OFFSET FontData+23256       ; The offset
  169.         MOV     DI, 44979                       ; Starting offset
  170.         MOV     CX, 39                          ; 36 Lines
  171.         MOV     DX, 72                          ; 72 bytes per line
  172.         CALL    MoveToScreen                    ; Show it
  173.  
  174. ;
  175. ; Main program
  176. ;
  177.  
  178. MAINLOOP:
  179.         MOV     DI, OFFSET Screen2              ; Show on screen 2
  180.         CALL    ShowText                        ; Show it!
  181.  
  182.         XOR     DH, DH                          ; Intensity 2
  183.  
  184. INTENSITYLOOP:
  185.         MOV     DL, 64                          ; Take 64 as default
  186.         SUB     DL, DH                          ; Substract other sensitivity
  187.  
  188.         MOV     CX, 7680                        ; Now, calculate 7680 bytes
  189.         XOR     BX, BX                          ; BX is the positive counter
  190.  
  191.         MOV     AX, CS                          ; Segment of Mixer screen
  192.         MOV     ES, AX                          ; In destination segment
  193.         MOV     DI, OFFSET Mixer                ; Offset  of Mixer screen
  194.  
  195. MORPHLOOP:
  196.         MOV     AL, [Screen1+BX]                ; Take a byte from screen 1
  197.         MUL     DL                              ; Now we've got the new value
  198.         MOV     SI, AX                          ; Save this new one
  199.         MOV     AL, [Screen2+BX]                ; Take a byte from screen 2
  200.         MUL     DH                              ; Now we've got the new value
  201.         ADD     AX, SI                          ; Save this new one
  202.         SHR     AX, 6                           ; Divide by 64
  203.         STOSB                                   ; Put this byte on the screen
  204.         INC     BX                              ; Positive counter increases
  205.         LOOP    MORPHLOOP                       ; Hehehe morph the thing
  206.  
  207. ;
  208. ; Wait for a VBL to pass to avoid 'flicker'
  209. ;
  210.  
  211.         MOV     BX, DX                          ; Save DX in BX
  212.         MOV     DX, 3DAh                        ; VGA's port
  213.  
  214. WVBL1:  IN      AL, DX                          ; Get a byte
  215.         TEST    AL, 8                           ; Now, 3d bit set?
  216.         JZ      WVBL1                           ; Jope!
  217.  
  218. WVBL2:  IN      AL, DX                          ; And again
  219.         TEST    AL, 8                           ; Now, VSYNC?
  220.         JNZ     WVBL2                           ; Nope
  221.  
  222.         MOV     DX, BX                          ; Restore DX from BX
  223.  
  224.         MOV     AX, 0A000h                      ; Screen segment...
  225.         MOV     ES, AX                          ; ...in ES
  226.         MOV     DI, 25600                       ; Start at Y = 80
  227.         MOV     SI, OFFSET Mixer                ; And it's offset
  228.         MOV     CX, 3840                        ; Move all with words
  229.         REP     MOVSW                           ; Move it!
  230.  
  231.         MOV     AX, 0100h                       ; Function 1, check buffer...
  232.         INT     16h                             ; ...for keystroke
  233.         JNZ     OUTOFLOOP                       ; Key, then exit
  234.  
  235.         ADD     DH, 2                           ; Increase intensity
  236.         CMP     DH, 64                          ; Well?
  237.         JLE     INTENSITYLOOP                   ; Still go on
  238.  
  239. ;
  240. ; This morph is done, copy screens
  241. ;
  242.  
  243.         MOV     SI, OFFSET Screen2              ; Offset of screen 2
  244.         MOV     AX, CS                          ; Segment of screen 1...
  245.         MOV     ES, AX                          ; ...in ES
  246.         MOV     DI, OFFSET Screen1              ; Offset of screen 1
  247.         MOV     CX, 3840                        ; Number of words to copy
  248.         REP     MOVSW                           ; And clear it
  249.  
  250. ;
  251. ; We've copied it, now let's clear the old screen
  252. ;
  253.  
  254.         MOV     AX, CS                          ; Segment of screen 2...
  255.         MOV     ES, AX                          ; ...in ES
  256.         MOV     DI, OFFSET Screen2              ; Offset of screen 2
  257.         MOV     CX, 3840                        ; Number of words to clear
  258.         XOR     AX, AX                          ; Fill with 0's
  259.         REP     STOSW                           ; And clear it
  260.  
  261.         XOR     AX, AX                          ; AX=0, request system time
  262.         INT     1Ah                             ; Ask time
  263.         ADD     DX, 10                          ; Next timer-tick
  264.         ADC     CX, 0                           ; Carries etc.
  265. WAITLOOP:
  266.         PUSH    CX DX                           ; Save user's trigger
  267.  
  268.         XOR     AX, AX                          ; Clear AX, ask timer value
  269.         INT     1Ah                             ; Ask for system-time
  270.         MOV     AX, CX                          ; Now, CX => AX
  271.         MOV     BX, DX                          ; Now, DX => BX
  272.  
  273.         POP     DX CX                           ; Restore user's trigger
  274.         CMP     AX, CX                          ; Let's see
  275.         JG      EXITWLOOP                       ; Let's exit
  276.         CMP     BX, DX                          ; Let's see
  277.         JG      EXITWLOOP                       ; Let's exit
  278.         CMP     DX, 64000                       ; User's trigger greater than..
  279.         JLE     WAITLOOP                        ; Nope, loop
  280.         CMP     BX, 2000                        ; Out trigger
  281.         JLE     EXITWLOOP                       ; His is larger, out smaller...
  282.         JMP     WAITLOOP                        ; And loop
  283. EXITWLOOP:
  284.  
  285.         JMP     MAINLOOP                        ; It's endless fun
  286.  
  287. OUTOFLOOP:
  288.  
  289. ;
  290. ; Restore video mode
  291. ;
  292.  
  293.         MOV     AX, 3                           ; Text mode
  294.         INT     10h                             ; VIDEO Function
  295.  
  296.         MOV     AX, 4C00h                       ; Exit program
  297.         INT     21h                             ; And that's it
  298.  
  299. ShowText proc
  300.         PUSH    SI ES                           ; Save Segment registers
  301.  
  302.         ; Registers:
  303.         ;   AX      = Current character
  304.         ;   ES:[DI] = Screen  address
  305.         ;   [SI] = Address of text
  306.  
  307.         MOV     SI, OFFSET Text                 ; Offset  of text
  308.         ADD     SI, [TextIndex]                 ; Saved it last time
  309.         MOV     AX, CS                          ; CS will be...
  310.         MOV     ES, AX                          ; ...Destination segment
  311.         MOV     AX, 26                          ; Multiply with 26
  312.         MUL     byte ptr [SI]                   ; Multiply with length of string
  313.         MOV     BX, 320                         ; 320 in BX
  314.         SUB     BX, AX                          ; Now, remove the stuff we've got
  315.         SHR     BX, 1                           ; And divide by two
  316.         ADD     DI, BX                          ; And center it
  317.         INC     SI                              ; Forget centerring byte
  318.         INC     [TextIndex]                     ; Got one more
  319.  
  320. TEXTLOOP:
  321.         XOR     AX, AX                          ; Clear AX (only AL is updated)
  322.         MOV     AL, [SI]                        ; Take one character
  323.         INC     [TextIndex]                     ; Got one more
  324.         INC     SI                              ; Next char next time
  325.         CMP     AL, 200                         ; 200 is next line
  326.         JE      EXITLOOP                        ; It is a pipe, exit
  327.         CMP     AL, 199                         ; 199 is end-of-text
  328.         JE      STARTOVER                       ; It is, so start all over
  329.  
  330.         ;
  331.         ; We now know it's a normal character
  332.         ;
  333.         ; Register change:
  334.         ;   [SI] => Pointer to graphic font
  335.         ;
  336.  
  337.         CMP     AL, 198                         ; But, is it a space?
  338.         JE      JUSTNEXT                        ; Then skip this
  339.  
  340.         PUSH    SI DI                           ; Save these registers
  341.  
  342.         MOV     SI, OFFSET FontData             ; Offset of font
  343.  
  344.         MOV     BX, AX                          ; Character in BX
  345.         MOV     AX, 576                         ; Each char's 576 bytes
  346.         MUL     BX                              ; Now, calculate the offset
  347.         ADD     SI, AX                          ; Address source
  348.  
  349.         MOV     CX, 24                          ; 24 lines in char
  350. MOVLINE:
  351.         PUSH    CX                              ; Another loop
  352.         MOV     CX, 12                          ; 12 Words a line of char
  353.         REP     MOVSW                           ; Move one line
  354.         POP     CX                              ; Back to normal loop
  355.         ADD     DI, 296                         ; Next line
  356.         LOOP    MOVLINE                         ; Next line
  357.  
  358.         POP     DI SI                           ; Restore these registers
  359.  
  360. JUSTNEXT:
  361.         ADD     DI, 26                          ; Next char
  362.         JMP     TEXTLOOP                        ; Do next char
  363.  
  364. STARTOVER:
  365.         MOV     [TextIndex], 0               ; Clear Index in text
  366. EXITLOOP:
  367.         POP     ES SI                           ; Restore stuff
  368.         RET                                     ; Return to caller
  369. ShowText endp
  370.  
  371.  
  372. ;
  373. ; This routine takes a value in AL and converts it.
  374. ;
  375. Convert proc
  376.         PUSH    BX                              ; Save BX
  377.         XOR     BX, BX                          ; Clear BX (Index)
  378.         MOV     BL, AL                          ; Index in table
  379.         MOV     AL, [ConvertTable+BX]        ; And convert it
  380.         POP     BX                              ; Restore BX
  381.         RET
  382. Convert endp
  383.  
  384. ;
  385. ;  This routine moves a bitmap from memory to the screen
  386. ;
  387. MoveToScreen proc
  388.         MOV     AX, 0A000h                      ; Screen segment...
  389.         MOV     ES, AX                          ; ...is destination segment
  390.         MOV     BX, 320                         ; Asume 320
  391.         SUB     BX, DX                          ; How much to jump for next line
  392. MOVESCREENLINE:
  393.         PUSH    CX                              ; Another loop
  394.         MOV     CX, DX                          ; Bytes-a-line
  395.         REP     MOVSB                           ; Move it!
  396.         ADD     DI, BX                          ; Next line on screen
  397.         POP     CX                              ; For outer loop
  398.         LOOP    MOVESCREENLINE                  ; Next!
  399.         RET                                     ; Done
  400. MoveToScreen endp
  401.  
  402. TextIndex       DW      ?                       ; Index in text string
  403. Screen2         DB      7680 DUP (?)            ; Screen 2 for morpher
  404. FontData        DB      28064 DUP (?)           ; Space for Font data
  405. TempVal         DW      ?                       ; Temporary value for morpher
  406. ConvertTable    DB      0,20,44,63              ; Conversion table for 2 >> 8
  407.  
  408. NoVGA           DB      'VGA Not found!$'       ; Error message
  409.  
  410. Text            DB      0,200                                   ; ...
  411.                 DB      9,19,7,8,18,198,5,8,11,4,200            ; This File
  412.                 DB      3,22,0,18,200                           ; Was
  413.                 DB      10,3,14,22,13,11,14,0,3,4,3,200         ; Downloaded
  414.                 DB      4,5,17,14,12,200                        ; From
  415.                 DB      9,6,4,13,8,0,0,11,198,28,200            ; GENIAAL 2
  416.                 DB      6,22,4,198,0,17,4,200                   ; We Are
  417.                 DB      10,20,11,19,17,0,18,14,20,13,3,200      ; UltraSound
  418.                 DB      11,18,20,15,15,14,17,19,198,1,1,18,200  ; Support BBS
  419.                 DB      7,7,14,11,11,0,13,3,200                 ; Holland
  420.                 DB      0,200                                   ; ...
  421.                 DB      6,22,4,198,0,17,4,200                   ; We are
  422.                 DB      11,18,15,4,2,8,0,11,8,18,4,3,200        ; Specialised
  423.                 DB      3,8,13,16,200                           ; In:
  424.                 DB      0,200                                   ; ...
  425.                 DB      10,20,11,19,17,0,18,14,20,13,3,200      ; UltraSound
  426.                 DB      12,18,14,20,13,3,1,11,0,18,19,4,17,200  ; SoundBlaster
  427.                 DB      5,0,3,11,8,1,200                        ; AdLib
  428.                 DB      8,6,17,0,15,7,8,2,18,200                ; Graphics
  429.                 DB      7,4,17,14,19,8,2,0,200                  ; Erotica
  430.                 DB      9,0,13,3,198,3,4,12,14,18,200           ; And Demos
  431.                 DB      0,200                                   ; ...
  432.                 DB      12,33,14,14,198,12,4,6,0,1,24,19,4,200  ; 700 Megabyte
  433.                 DB      7,14,13,10,11,8,13,4,200                ; ON-Line
  434.                 DB      0,200                                   ; ...
  435.                 DB      6,18,24,18,14,15,16,200                 ; SysOp:
  436.                 DB      0,200                                   ; ...
  437.                 DB      12,0,19,8,11,11,0,198,12,4,8,9,18,200   ; Atilla Meijs
  438.                 DB      0,200                                   ; ...
  439.                 DB      10,2,14,10,18,24,18,14,15,18,16,200     ; Co-SysOps:
  440.                 DB      0,200                                   ; ...
  441.                 DB      12,9,0,0,15,198,21,4,17,1,14,14,13,200  ; Jaap Verboon
  442.                 DB      3,0,13,3,200                            ; And
  443.                 DB      7,12,8,2,7,8,4,11,200                   ; Michiel
  444.                 DB      8,14,20,22,4,7,0,13,3,200               ; Ouwehand
  445.                 DB      0,200                                   ; ...
  446.                 DB      12,2,0,11,11,198,20,18,198,13,14,22,26,200; Call Us Now!
  447.                 DB      0,200                                   ; ...
  448.                 DB      10,1,14,19,7,198,11,8,13,4,18,200       ; Both lines
  449.                 DB      5,20,15,198,19,14,200                   ; Up to
  450.                 DB      11,27,30,23,30,14,14,198,1,0,20,3,200   ; 14.400 Baud
  451.                 DB      12,2,0,11,11,198,20,18,198,13,14,22,26,200; Call Us Now!
  452.                 DB      0,200                                   ; ...
  453.                 DB      0,200                                   ; ...
  454.                 DB      0,199                                   ; End-of-message
  455.  
  456. Screen1         DB 64,254,255,255,191,1,228,255,255,255,255,27,248,255,255,255
  457.                 DB 255,47,253,255,255,255,255,127,254,255,255,255,255,191,255
  458.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,6,144
  459.                 DB 255,255,255,191,1,64,254,255,255,127,0,0,253,255,255,63,0
  460.                 DB 0,252,255,255,63,0,0,252,255,255,255,255,255,255,255,255,255
  461.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  462.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,63
  463.                 DB 0,0,252,255,255,63,0,0,252,255,255,63,0,0,252,255,255,63,0
  464.                 DB 0,252,255,255,63,0,0,252,255,255,63,0,0,252,255,255,255,255
  465.                 DB 255,191,1,255,255,255,255,255,27,255,255,255,255,255,47,255
  466.                 DB 255,255,255,255,127,255,255,255,255,255,191,255,255,255,255
  467.                 DB 255,255,255,255,255,255,255,255,255,63,0,144,255,255,255,63
  468.                 DB 0,64,254,191,255,63,0,0,255,127,255,63,0,64,255,47,255,63
  469.                 DB 0,128,255,31,255,63,0,128,255,31,255,63,0,64,255,47,255,63
  470.                 DB 0,0,255,127,255,63,0,64,254,191,255,63,0,144,255,255,255,255
  471.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  472.                 DB 191,255,255,255,255,255,127,255,255,255,255,255,47,255,255
  473.                 DB 255,255,255,27,255,255,255,255,191,1,0,144,255,255,6,0,0,249
  474.                 DB 255,255,111,0,64,254,255,255,191,1,144,255,255,255,255,6,228
  475.                 DB 255,255,255,255,27,248,255,255,255,255,47,253,255,255,255
  476.                 DB 255,127,254,255,27,228,255,191,255,255,1,64,255,255,255,191
  477.                 DB 0,0,255,255,255,127,0,0,0,0,255,63,0,0,0,0,255,63,0,0,0,0
  478.                 DB 255,127,0,0,0,0,255,191,0,0,255,255,255,255,1,64,255,255,254
  479.                 DB 255,27,228,255,191,253,255,255,255,255,127,248,255,255,255
  480.                 DB 255,47,228,255,255,255,255,27,144,255,255,255,255,6,64,254
  481.                 DB 255,255,191,1,0,249,255,255,111,0,0,144,255,255,6,0,255,255
  482.                 DB 255,255,191,1,255,255,255,255,255,27,255,255,255,255,255,47
  483.                 DB 255,255,255,255,255,127,255,255,255,255,255,191,255,255,255
  484.                 DB 255,255,255,255,255,255,255,255,255,255,63,0,144,255,255,255
  485.                 DB 63,0,64,254,255,255,63,0,0,253,255,255,63,0,0,252,255,255
  486.                 DB 63,0,0,252,255,255,63,0,0,252,255,255,63,0,0,252,255,255,63
  487.                 DB 0,0,253,255,255,63,0,64,254,255,255,63,0,144,255,255,255,255
  488.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  489.                 DB 191,255,255,255,255,255,127,255,255,255,255,255,47,255,255
  490.                 DB 255,255,255,27,255,255,255,255,191,1,255,255,255,255,255,255
  491.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  492.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  493.                 DB 255,255,255,255,255,255,255,63,0,0,0,0,255,63,0,0,0,0,255
  494.                 DB 255,255,255,3,0,255,255,255,255,3,0,255,255,255,255,3,0,255
  495.                 DB 255,255,255,3,0,255,255,255,255,3,0,255,255,255,255,3,0,255
  496.                 DB 63,0,0,0,0,255,63,0,0,0,0,255,255,255,255,255,255,255,255
  497.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  498.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  499.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  500.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  501.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  502.                 DB 255,255,63,0,0,0,0,255,63,0,0,0,0,255,255,255,255,3,0,255
  503.                 DB 255,255,255,3,0,255,255,255,255,3,0,255,255,255,255,3,0,255
  504.                 DB 255,255,255,3,0,255,255,255,255,3,0,255,63,0,0,0,0,255,63
  505.                 DB 0,0,0,0,255,63,0,0,0,0,255,63,0,0,0,0,255,63,0,0,0,0,255,63
  506.                 DB 0,0,0,0,255,63,0,0,0,0,255,63,0,0,0,0,255,63,0,0,0,0,0,144
  507.                 DB 255,255,6,0,0,249,255,255,111,0,64,254,255,255,191,1,144,255
  508.                 DB 255,255,255,6,228,255,255,255,255,27,248,255,255,255,255,47
  509.                 DB 253,255,255,255,255,127,254,255,27,228,255,191,255,255,1,64
  510.                 DB 255,255,255,191,0,0,0,0,255,127,192,255,255,255,255,63,192
  511.                 DB 255,255,255,255,63,192,255,255,255,255,127,192,255,255,255
  512.                 DB 255,191,192,255,255,255,255,255,193,255,255,255,254,255,27
  513.                 DB 228,255,191,253,255,255,255,255,127,248,255,255,255,255,47
  514.                 DB 228,255,255,255,255,27,144,255,255,255,255,6,64,254,255,255
  515.                 DB 191,1,0,249,255,255,111,0,0,144,255,255,6,0,255,255,0,0,255
  516.                 DB 255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255
  517.                 DB 255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255
  518.                 DB 255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,255,255
  519.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  520.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  521.                 DB 255,255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,0
  522.                 DB 0,255,255,255,255,0,0,255,255,255,255,0,0,255,255,255,255
  523.                 DB 0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255,255,255
  524.                 DB 0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  525.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  526.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  527.                 DB 0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  528.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  529.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,255,255,255,255,255
  530.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  531.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  532.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  533.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  534.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  535.                 DB 255,255,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  536.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  537.                 DB 0,255,255,0,0,0,64,255,255,0,0,0,144,255,255,0,0,0,228,255
  538.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  539.                 DB 255,255,255,191,255,255,255,255,255,127,255,255,255,255,255
  540.                 DB 47,255,255,255,255,255,27,255,255,255,255,191,1,0,0,0,0,0
  541.                 DB 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
  542.                 DB 0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255
  543.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  544.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  545.                 DB 255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  546.                 DB 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
  547.                 DB 0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  548.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  549.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  550.                 DB 0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  551.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  552.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  553.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  554.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,111,0,0,249
  555.                 DB 255,255,191,1,64,254,255,255,255,6,144,255,255,255,255,27
  556.                 DB 228,255,255,255,255,111,249,255,255,255,255,191,254,255,255
  557.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  558.                 DB 255,255,255,255,255,255,255,255,255,255,191,255,255,254,255
  559.                 DB 255,127,254,191,253,255,255,63,249,111,252,255,255,63,228
  560.                 DB 27,252,255,255,63,144,6,252,255,255,63,64,1,252,255,255,63
  561.                 DB 0,0,252,255,255,63,0,0,252,255,255,63,0,0,252,255,255,63,0
  562.                 DB 0,252,255,255,63,0,0,252,255,255,63,0,0,252,255,255,63,0,0
  563.                 DB 252,255,255,63,0,0,252,255,255,255,127,0,255,255,255,255,191
  564.                 DB 0,255,255,255,255,255,1,255,255,255,255,255,2,255,255,255
  565.                 DB 255,255,7,255,255,255,255,255,11,255,255,255,255,255,31,255
  566.                 DB 255,255,255,255,47,255,255,255,255,255,127,255,255,255,255
  567.                 DB 255,191,255,255,255,255,255,255,255,255,255,255,255,255,255
  568.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  569.                 DB 254,255,255,255,255,255,253,255,255,255,255,255,248,255,255
  570.                 DB 255,255,255,244,255,255,255,255,255,224,255,255,255,255,255
  571.                 DB 208,255,255,255,255,255,128,255,255,255,255,255,64,255,255
  572.                 DB 255,255,255,0,254,255,255,255,255,0,253,255,255,0,144,255
  573.                 DB 255,6,0,0,249,255,255,111,0,64,254,255,255,191,1,144,255,255
  574.                 DB 255,255,6,228,255,255,255,255,27,248,255,255,255,255,47,253
  575.                 DB 255,255,255,255,127,254,255,27,228,255,191,255,255,1,64,255
  576.                 DB 255,255,191,0,0,254,255,255,127,0,0,253,255,255,63,0,0,252
  577.                 DB 255,255,63,0,0,252,255,255,127,0,0,253,255,255,191,0,0,254
  578.                 DB 255,255,255,1,64,255,255,254,255,27,228,255,191,253,255,255
  579.                 DB 255,255,127,248,255,255,255,255,47,228,255,255,255,255,27
  580.                 DB 144,255,255,255,255,6,64,254,255,255,191,1,0,249,255,255,111
  581.                 DB 0,0,144,255,255,6,0,255,255,255,255,191,1,255,255,255,255
  582.                 DB 255,27,255,255,255,255,255,47,255,255,255,255,255,127,255
  583.                 DB 255,255,255,255,191,255,255,255,255,255,255,255,63,0,144,255
  584.                 DB 255,255,63,0,64,254,255,255,63,0,0,253,255,255,63,0,0,252
  585.                 DB 255,255,63,0,0,253,255,255,63,0,64,254,255,255,63,0,144,255
  586.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,191,255,255
  587.                 DB 255,255,255,127,255,255,255,255,255,47,255,255,255,255,255
  588.                 DB 27,255,255,255,255,191,1,255,63,0,0,0,0,255,63,0,0,0,0,255
  589.                 DB 63,0,0,0,0,255,63,0,0,0,0,255,63,0,0,0,0,0,0,0,0,0,0,0,0,144
  590.                 DB 27,0,0,0,0,248,191,0,0,0,0,253,255,1,0,0,0,254,255,2,0,0,0
  591.                 DB 255,255,3,0,0,0,254,255,2,0,0,0,253,255,1,0,0,0,248,191,0
  592.                 DB 0,0,0,144,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  593.                 DB 0,0,0,0,0,144,27,0,0,0,0,248,191,0,0,0,0,253,255,1,0,0,0,254
  594.                 DB 255,2,0,0,0,255,255,3,0,0,0,254,255,2,0,0,0,253,255,1,0,0
  595.                 DB 0,248,191,0,0,0,0,144,27,0,0,0,0,0,0,0,0,255,255,255,255,191
  596.                 DB 1,255,255,255,255,255,27,255,255,255,255,255,47,255,255,255
  597.                 DB 255,255,127,255,255,255,255,255,191,255,63,0,144,255,255,255
  598.                 DB 63,0,64,254,255,255,63,0,0,253,255,255,63,0,0,252,255,255
  599.                 DB 63,0,0,253,255,255,63,0,64,254,255,255,63,0,144,255,255,255
  600.                 DB 255,255,255,255,191,255,255,255,255,255,127,255,255,255,255
  601.                 DB 255,47,255,255,255,255,255,27,255,255,255,255,255,6,255,63
  602.                 DB 0,249,255,27,255,63,0,228,255,111,255,63,0,144,255,191,255
  603.                 DB 63,0,64,254,255,255,63,0,0,249,255,255,63,0,0,228,255,255
  604.                 DB 63,0,0,144,255,64,254,255,255,191,1,228,255,255,255,255,27
  605.                 DB 248,255,255,255,255,47,253,255,255,255,255,127,254,255,255
  606.                 DB 255,255,191,255,255,255,255,255,255,255,255,255,255,255,255
  607.                 DB 255,255,15,0,0,0,255,255,15,0,0,0,255,255,255,255,191,1,254
  608.                 DB 255,255,255,255,27,253,255,255,255,255,47,248,255,255,255
  609.                 DB 255,127,228,255,255,255,255,191,64,254,255,255,255,255,0,0
  610.                 DB 0,240,255,255,0,0,0,240,255,255,255,255,255,255,255,255,255
  611.                 DB 255,255,255,255,255,254,255,255,255,255,191,253,255,255,255
  612.                 DB 255,127,248,255,255,255,255,47,228,255,255,255,255,27,64,254
  613.                 DB 255,255,191,1,255,255,255,255,255,255,255,255,255,255,255
  614.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  615.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  616.                 DB 255,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  617.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  618.                 DB 0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  619.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  620.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,255,255,0,0,255,255
  621.                 DB 255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255
  622.                 DB 255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255
  623.                 DB 255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255
  624.                 DB 255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255,255
  625.                 DB 255,255,1,64,255,255,255,255,2,128,255,255,255,255,7,208,255
  626.                 DB 255,254,255,111,249,255,191,253,255,255,255,255,127,248,255
  627.                 DB 255,255,255,47,228,255,255,255,255,27,144,255,255,255,255
  628.                 DB 6,64,254,255,255,191,1,0,249,255,255,111,0,0,144,255,255,6
  629.                 DB 0,255,31,0,0,244,255,255,47,0,0,248,255,255,127,0,0,253,255
  630.                 DB 255,191,0,0,254,255,255,255,1,64,255,255,255,255,2,128,255
  631.                 DB 255,254,255,7,208,255,191,253,255,11,224,255,127,248,255,31
  632.                 DB 244,255,47,244,255,47,248,255,31,224,255,127,253,255,11,208
  633.                 DB 255,191,254,255,7,128,255,255,255,255,2,64,255,255,255,255
  634.                 DB 1,0,254,255,255,191,0,0,253,255,255,127,0,0,248,255,255,47
  635.                 DB 0,0,244,255,255,31,0,0,224,255,255,11,0,0,208,255,255,7,0
  636.                 DB 0,128,255,255,2,0,0,64,255,255,1,0,0,0,254,191,0,0,0,0,253
  637.                 DB 127,0,0,255,63,0,0,252,255,255,63,0,0,252,255,255,63,0,0,252
  638.                 DB 255,255,63,0,0,252,255,255,63,0,0,252,255,255,63,0,0,252,255
  639.                 DB 255,63,0,0,252,255,255,63,0,0,252,255,255,63,64,1,252,255
  640.                 DB 255,63,144,6,252,255,255,63,228,27,252,255,255,63,249,111
  641.                 DB 252,255,255,127,254,191,253,255,255,191,255,255,254,255,255
  642.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  643.                 DB 255,255,255,255,255,255,255,255,255,255,191,254,255,255,255
  644.                 DB 255,111,249,255,255,255,255,27,228,255,255,255,255,6,144,255
  645.                 DB 255,255,191,1,64,254,255,255,111,0,0,249,255,0,0,0,0,0,0,0
  646.                 DB 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
  647.                 DB 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
  648.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,27,0,0,0,0,248
  649.                 DB 191,0,0,0,0,253,255,1,0,0,0,254,255,2,0,0,0,255,255,3,0,0
  650.                 DB 0,254,255,2,0,0,0,253,255,1,0,0,0,248,191,0,0,0,0,144,27,0
  651.                 DB 0,0,0,0,0,0,0,255,111,0,0,249,255,255,191,1,64,254,255,255
  652.                 DB 255,6,144,255,255,255,255,27,228,255,255,255,255,111,249,255
  653.                 DB 255,255,255,191,254,255,255,254,255,255,255,255,191,249,255
  654.                 DB 255,255,255,111,228,255,255,255,255,27,144,255,255,255,255
  655.                 DB 6,64,254,255,255,191,1,0,249,255,255,111,0,0,228,255,255,27
  656.                 DB 0,0,144,255,255,6,0,0,64,255,255,1,0,0,0,255,255,0,0,0,0,255
  657.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  658.                 DB 0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  659.                 DB 0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  660.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  661.                 DB 255,255,255,255,255,255,191,255,255,255,255,255,111,0,0,144
  662.                 DB 255,255,27,0,0,228,255,255,6,0,0,249,255,191,1,0,64,254,255
  663.                 DB 111,0,0,144,255,255,27,0,0,228,255,255,6,0,0,249,255,191,1
  664.                 DB 0,64,254,255,111,0,0,144,255,255,27,0,0,228,255,255,6,0,0
  665.                 DB 249,255,255,255,255,255,254,255,255,255,255,255,255,255,255
  666.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  667.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,0,0,144,27
  668.                 DB 0,0,0,0,248,191,0,0,0,0,253,255,1,0,0,0,254,255,2,0,0,0,255
  669.                 DB 255,3,0,0,0,255,255,3,0,0,0,255,255,3,0,0,0,255,255,3,0,0
  670.                 DB 0,254,255,2,0,0,0,253,255,1,0,0,0,252,255,0,0,0,0,248,191
  671.                 DB 0,0,0,0,244,127,0,0,0,0,224,47,0,0,0,0,64,6,0,0,0,0,0,0,0
  672.                 DB 0,0,0,0,1,0,0,0,0,144,27,0,0,0,0,224,47,0,0,0,0,244,127,0
  673.                 DB 0,0,0,224,47,0,0,0,0,144,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
  674.                 DB 0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  675.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  676.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  677.                 DB 0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  678.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  679.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  680.                 DB 0,255,255,0,0,0,0,255,255,0,0,64,254,255,255,191,1,228,255
  681.                 DB 255,255,255,27,248,255,255,255,255,47,253,255,255,255,255
  682.                 DB 127,254,255,255,255,255,191,255,255,255,255,255,191,255,255
  683.                 DB 255,255,255,127,255,255,67,254,255,47,255,255,147,255,255
  684.                 DB 27,0,0,228,255,255,6,0,0,249,255,191,1,0,64,254,255,111,0
  685.                 DB 0,144,255,255,27,0,0,228,255,255,6,0,0,249,255,191,1,0,64
  686.                 DB 254,255,111,0,0,144,255,255,27,0,0,228,255,255,255,255,255
  687.                 DB 249,255,255,255,255,255,254,255,255,255,255,255,255,255,255
  688.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  689.                 DB 255,255,255,255,255,255,64,254,255,255,191,1,228,255,255,255
  690.                 DB 255,27,248,255,255,255,255,47,253,255,255,255,255,127,254
  691.                 DB 255,255,255,255,191,255,255,255,255,255,255,255,255,255,255
  692.                 DB 255,255,255,255,0,0,252,255,0,0,0,0,252,255,0,0,252,255,255
  693.                 DB 255,0,0,252,255,255,255,0,0,252,255,255,255,0,0,252,255,255
  694.                 DB 255,0,0,252,255,255,255,0,0,252,255,255,255,0,0,0,0,252,255
  695.                 DB 255,255,0,0,252,255,255,255,255,255,255,255,255,255,255,255
  696.                 DB 255,255,254,255,255,255,255,191,253,255,255,255,255,127,248
  697.                 DB 255,255,255,255,47,228,255,255,255,255,27,64,254,255,255,191
  698.                 DB 1,255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255
  699.                 DB 255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255
  700.                 DB 255,255,255,0,0,255,255,255,255,0,0,255,255,255,255,0,0,255
  701.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  702.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  703.                 DB 255,255,255,255,255,255,255,0,0,0,0,255,255,0,0,0,0,255,255
  704.                 DB 0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  705.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,64,254
  706.                 DB 255,255,191,1,228,255,255,255,255,27,248,255,255,255,255,47
  707.                 DB 253,255,255,255,255,127,254,255,255,255,255,191,255,255,255
  708.                 DB 255,255,255,255,255,255,255,255,255,255,255,15,0,0,0,255,255
  709.                 DB 15,0,0,0,255,255,255,255,191,1,254,255,255,255,255,27,253
  710.                 DB 255,255,255,255,47,248,255,255,255,255,127,228,255,255,255
  711.                 DB 255,191,64,254,255,255,255,255,0,0,0,240,255,255,0,0,0,240
  712.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,254
  713.                 DB 255,255,255,255,191,253,255,255,255,255,127,248,255,255,255
  714.                 DB 255,47,228,255,255,255,255,27,64,254,255,255,191,1,252,255
  715.                 DB 3,0,0,0,252,255,3,0,0,0,252,255,3,0,0,0,252,255,3,0,0,0,252
  716.                 DB 255,3,0,0,0,252,255,3,0,0,0,252,255,255,255,255,6,252,255
  717.                 DB 255,255,255,111,252,255,255,255,255,191,252,255,255,255,255
  718.                 DB 255,252,255,255,255,255,255,252,255,255,255,255,255,252,255
  719.                 DB 27,64,254,255,252,255,6,0,249,255,252,255,1,0,244,255,252
  720.                 DB 255,1,0,244,255,252,255,6,0,249,255,252,255,27,64,254,255
  721.                 DB 252,255,255,255,255,255,248,255,255,255,255,255,244,255,255
  722.                 DB 255,255,255,224,255,255,255,255,191,144,255,255,255,255,111
  723.                 DB 0,249,255,255,255,6,0,249,255,255,255,6,144,255,255,255,255
  724.                 DB 31,224,255,255,255,255,47,244,255,255,255,255,127,248,255
  725.                 DB 255,255,255,191,252,255,255,255,255,191,252,255,255,255,255
  726.                 DB 127,0,0,64,254,255,47,0,0,144,255,255,27,0,0,228,255,255,6
  727.                 DB 0,0,249,255,191,1,0,64,254,255,111,0,0,144,255,255,27,0,0
  728.                 DB 228,255,255,6,0,0,249,255,191,1,0,64,254,255,111,0,0,144,255
  729.                 DB 255,27,0,0,228,255,255,6,0,0,248,255,191,1,0,0,252,255,111
  730.                 DB 0,0,0,252,255,27,0,0,0,252,255,6,0,0,0,252,191,1,0,0,0,252
  731.                 DB 111,0,0,0,0,64,254,255,255,191,1,228,255,255,255,255,27,248
  732.                 DB 255,255,255,255,47,253,255,255,255,255,127,254,255,6,144,255
  733.                 DB 191,255,191,1,64,254,255,255,127,0,0,253,255,255,63,0,0,252
  734.                 DB 255,254,127,0,0,253,191,249,191,1,64,254,111,148,255,6,144
  735.                 DB 255,22,64,254,255,255,191,1,64,254,255,255,191,1,148,255,6
  736.                 DB 144,255,22,249,191,1,64,254,111,254,127,0,0,253,191,255,63
  737.                 DB 0,0,252,255,255,127,0,0,253,255,255,191,1,64,254,255,254,255
  738.                 DB 6,144,255,191,253,255,255,255,255,127,248,255,255,255,255
  739.                 DB 47,228,255,255,255,255,27,64,254,255,255,191,1,64,254,255
  740.                 DB 255,191,1,228,255,255,255,255,27,248,255,255,255,255,47,253
  741.                 DB 255,255,255,255,127,254,255,255,255,255,191,255,255,255,255
  742.                 DB 255,255,255,255,6,144,255,255,255,191,1,64,254,255,255,127
  743.                 DB 0,0,253,255,255,63,0,0,252,255,255,127,0,0,253,255,255,191
  744.                 DB 1,64,254,255,255,255,6,144,255,255,255,255,255,255,255,255
  745.                 DB 254,255,255,255,255,255,253,255,255,255,255,255,248,255,255
  746.                 DB 255,255,255,228,255,255,255,255,255,64,254,255,255,255,255
  747.                 DB 0,0,0,0,252,255,0,0,0,0,252,255,0,0,0,0,252,255,0,0,0,0,252
  748.                 DB 255,0,0,0,0,252,255,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  749.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0
  750.                 DB 0,255,255,0,0,255,255,255,255,255,255,255,255,255,255,255
  751.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  752.                 DB 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
  753.                 DB 255,255,255,255,255,255,255,0,0,255,255,0,0,0,0,255,255,0
  754.                 DB 0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255
  755.                 DB 255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,0,0,0,0
  756.  
  757.                 ;
  758.                 ; This is the place where the phone numbers bitmap start, but
  759.                 ; I put it here because it's also 2 bits and thus can be
  760.                 ; easily converted.
  761.                 ;
  762.  
  763.                 DB 0,0,0,160,26,0,0,5,0,0,0,160,191,1,128,254,6,0,186,190,2,0
  764.                 DB 0,128,1,0,0,0,0,0,169,191,1,144,11,0,0,0,253,255,11,244,255
  765.                 DB 47,208,47,224,31,0,0,224,1,0,0,0,0,0,2,253,66,254,11,0,0,0
  766.                 DB 91,249,31,108,229,127,224,15,192,47,0,0,248,1,0,0,0,0,0,0
  767.                 DB 248,7,253,11,0,0,64,1,224,47,5,128,191,244,11,128,127,0,0
  768.                 DB 254,1,0,0,0,0,0,0,248,3,248,11,0,0,0,0,208,47,0,64,191,248
  769.                 DB 11,128,191,0,128,255,1,0,0,0,1,0,0,252,2,248,11,0,0,0,0,208
  770.                 DB 47,0,64,191,248,11,128,191,0,208,255,1,0,0,64,7,0,0,190,0
  771.                 DB 248,11,0,0,0,0,224,15,0,128,63,248,11,128,191,0,116,255,1
  772.                 DB 0,0,64,7,0,128,191,0,248,11,0,0,0,0,244,6,0,208,27,240,15
  773.                 DB 128,191,0,93,255,1,0,0,64,7,0,0,254,3,248,11,0,0,0,0,189,0
  774.                 DB 0,244,2,224,31,192,191,64,71,255,1,85,5,169,171,1,0,248,11
  775.                 DB 248,11,168,170,0,64,11,0,0,45,0,128,191,229,127,208,65,255
  776.                 DB 129,255,47,169,171,1,0,244,15,248,11,168,170,0,208,1,0,64
  777.                 DB 7,0,0,164,218,127,116,64,255,1,85,5,64,7,0,1,244,31,248,11
  778.                 DB 0,0,0,116,0,0,208,1,0,0,0,208,47,188,170,255,6,0,0,64,7,208
  779.                 DB 11,244,31,248,11,0,0,0,44,0,32,176,0,128,0,0,224,31,244,255
  780.                 DB 255,11,0,0,64,7,224,31,244,15,248,11,0,0,0,174,170,46,184
  781.                 DB 170,186,0,0,244,11,64,85,255,1,0,0,0,1,224,31,244,11,248,11
  782.                 DB 0,0,0,255,255,31,252,255,127,0,0,248,2,0,64,255,1,0,0,0,0
  783.                 DB 208,31,248,2,248,11,0,0,128,255,255,15,254,255,63,0,64,110
  784.                 DB 0,0,128,255,2,0,0,0,0,0,186,110,0,254,47,0,0,64,170,170,6
  785.                 DB 169,170,26,0,148,6,0,0,144,170,6,0,0,0,0,0,80,5,0,85,21,0
  786.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,175,0,144,175,111
  787.                 DB 0,244,255,47,128,174,175,0,0,0,0,0,254,255,7,248,7,253,2,248
  788.                 DB 255,31,244,11,248,7,0,0,0,0,91,254,11,253,2,248,7,168,170
  789.                 DB 10,248,3,240,11,0,0,0,0,0,244,31,254,1,244,11,24,0,0,253,2
  790.                 DB 224,31,0,0,0,0,0,224,95,255,1,244,15,9,0,0,254,2,224,47,0
  791.                 DB 0,0,0,0,224,79,255,1,244,31,173,26,0,254,2,224,47,0,0,0,0
  792.                 DB 0,244,11,255,1,244,31,253,255,2,254,2,224,47,0,0,0,0,0,248
  793.                 DB 2,254,2,244,31,254,255,11,252,3,224,47,0,0,0,0,0,110,0,252
  794.                 DB 2,248,31,169,255,31,248,7,240,47,0,0,0,0,128,7,0,228,91,254
  795.                 DB 11,0,228,47,224,111,249,31,0,0,0,0,160,0,0,64,170,249,11,0
  796.                 DB 128,127,0,169,246,31,0,0,0,0,40,0,16,0,0,248,7,4,0,127,0,0
  797.                 DB 244,11,0,0,0,0,14,0,20,0,0,252,66,47,0,62,0,0,248,7,0,0,0
  798.                 DB 0,175,170,30,0,0,254,129,127,0,46,0,0,253,2,0,0,0,0,255,255
  799.                 DB 11,0,64,127,128,127,0,15,0,0,190,0,0,0,0,0,255,255,11,0,224
  800.                 DB 11,0,254,150,6,0,144,27,0,0,0,0,0,170,170,2,0,105,0,0,144
  801.                 DB 106,0,0,165,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  802.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,1,0,0,0,64,85,21
  803.                 DB 0,0,0,0,0,0,0,0,0,0,249,47,0,128,7,208,255,191,0,0,64,2,0
  804.                 DB 0,0,0,0,64,150,255,64,249,7,224,255,127,0,0,208,2,0,0,0,0
  805.                 DB 0,64,0,254,66,255,7,160,170,42,0,0,244,2,0,0,0,0,0,0,0,253
  806.                 DB 2,253,7,96,0,0,0,0,253,2,0,0,0,0,0,0,0,253,1,253,7,36,0,0
  807.                 DB 0,0,255,2,0,0,0,0,0,0,0,190,0,253,7,180,106,0,0,128,255,2
  808.                 DB 0,0,0,0,0,0,144,47,0,253,7,244,255,11,0,160,254,2,0,0,0,0
  809.                 DB 0,0,128,191,1,253,7,248,255,47,0,40,254,2,0,0,0,0,0,0,0,253
  810.                 DB 2,253,7,164,254,127,0,10,254,2,0,0,0,0,0,0,0,248,7,253,7,0
  811.                 DB 144,191,128,2,254,2,0,0,0,0,0,0,0,248,11,253,7,0,0,254,161
  812.                 DB 0,254,2,0,0,0,0,0,144,2,248,11,253,7,16,0,252,181,170,255
  813.                 DB 11,0,0,0,0,0,240,11,248,11,253,7,189,0,248,224,255,255,31
  814.                 DB 0,0,0,0,0,244,11,248,7,253,7,254,1,184,64,85,254,6,0,0,0,0
  815.                 DB 0,240,11,252,2,253,7,254,1,60,0,0,254,2,0,0,0,0,0,144,95,190
  816.                 DB 0,254,11,248,91,26,0,64,255,7,0,0,0,0,0,0,169,10,64,170,26
  817.                 DB 64,170,1,0,144,170,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  818.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  819.                 DB 1080 DUP (?)
  820.  
  821. LogoPal         DB 0,0,0,0,1,1,1,1,3,5,5,8,7,8,14,10,10,18,11,12,23,12,13,25
  822.                 DB 12,13,27,13,14,27,14,14,27,14,14,29,14,16,29,16,17,29,16,17
  823.                 DB 31,17,17,29,17,17,31,17,18,31,18,18,33,18,18,34,18,19,34,19
  824.                 DB 19,34,19,20,36,20,20,36,20,21,38,21,21,36,21,21,38,21,22,38
  825.                 DB 22,22,40,23,23,40,24,24,42,26,26,44
  826.  
  827. Mixer           DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,67,68,67,67,0,0,0,0,0
  828.                 DB 0,0,0,0,0,0,0,70,95,82,74,70,68,67,0,0,0,0,0,0,0,0,0,0,0,0
  829.                 DB 0,0,0,71,95,95,95,86,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  830.                 DB 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
  831.                 DB 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
  832.                 DB 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
  833.                 DB 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
  834.                 DB 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,66,69,74
  835.                 DB 85,93,93,94,94,94,92,71,67,0,0,0,0,0,0,0,0,0,70,95,95,95,95
  836.                 DB 95,95,95,94,84,73,70,67,67,0,0,0,0,0,0,0,0,71,95,95,95,95
  837.                 DB 95,86,68,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
  838.                 DB 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
  839.                 DB 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
  840.                 DB 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
  841.                 DB 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
  842.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,66,70,85,93,92,93,93,93,93,94,94,94
  843.                 DB 94,94,90,72,68,67,65,0,0,0,0,0,74,95,95,95,95,95,95,95,95
  844.                 DB 95,95,95,95,95,95,93,85,71,70,66,0,0,71,95,95,95,95,95,95
  845.                 DB 95,90,67,0,0,0,0,0,0,0,67,68,68,68,68,68,68,68,66,0,0,0,0
  846.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,68,68,68,68,68,68
  847.                 DB 68,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,67
  848.                 DB 0,0,0,0,0,0,0,0,0,0,0,67,68,68,68,68,68,68,68,0,0,0,0,0,0
  849.                 DB 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,67,71
  850.                 DB 82,94,94,94,80,73,68,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,77
  851.                 DB 92,92,92,92,92,93,93,93,94,94,94,94,94,94,94,94,75,70,70,68
  852.                 DB 67,65,0,0,82,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  853.                 DB 95,95,95,83,70,67,71,95,95,95,95,95,95,95,95,94,68,0,0,0,0
  854.                 DB 0,0,80,95,95,95,95,95,95,95,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  855.                 DB 0,0,0,0,0,0,0,0,0,85,95,95,95,95,95,95,95,90,0,0,0,0,0,0,0
  856.                 DB 0,0,0,0,0,0,0,0,66,68,74,74,85,93,95,95,95,95,95,0,0,0,0,0
  857.                 DB 0,0,0,65,68,72,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0
  858.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,67,69,92,95,94,94,94
  859.                 DB 94,94,94,93,93,92,71,65,0,0,0,0,0,0,0,0,0,0,65,74,92,92,92
  860.                 DB 92,93,92,93,93,93,93,94,94,94,94,94,94,94,94,92,72,72,72,70
  861.                 DB 68,66,0,82,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  862.                 DB 95,95,83,76,75,86,95,95,95,95,95,95,95,95,95,83,72,67,0,0
  863.                 DB 0,0,73,95,95,95,95,95,95,95,72,68,0,0,0,0,0,69,74,74,74,74
  864.                 DB 68,68,68,66,0,0,0,0,0,0,0,66,95,95,95,95,95,95,95,95,95,66
  865.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,66,72,95,95,95,95,95,95,95,95,95
  866.                 DB 95,67,0,0,0,0,0,0,68,72,72,72,94,95,95,95,95,95,95,93,0,0
  867.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,67,68,68
  868.                 DB 83,95,95,95,95,94,94,94,94,94,94,93,93,93,88,67,0,0,0,0,0
  869.                 DB 0,0,0,67,87,92,92,92,92,92,92,92,93,93,93,93,94,94,94,94,94
  870.                 DB 94,94,94,94,88,72,72,72,72,70,66,94,95,95,95,95,95,95,95,95
  871.                 DB 95,95,95,95,95,95,95,95,95,95,83,76,75,83,95,95,95,95,95,95
  872.                 DB 95,95,95,95,72,72,66,0,0,0,68,95,95,95,95,95,95,95,83,72,0
  873.                 DB 0,0,0,0,95,95,95,95,95,95,95,95,68,0,0,0,0,0,0,0,69,95,95
  874.                 DB 95,95,95,95,95,95,95,70,0,0,0,0,0,0,0,0,0,0,0,0,66,70,88,95
  875.                 DB 95,95,95,95,95,95,95,95,95,80,0,0,0,0,0,66,72,72,72,72,92
  876.                 DB 95,95,95,95,95,95,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  877.                 DB 0,0,0,66,68,68,68,70,70,86,95,95,95,95,95,94,94,94,94,94,94
  878.                 DB 94,93,93,93,92,67,0,0,0,0,0,0,65,84,92,92,92,92,92,92,92,92
  879.                 DB 93,93,93,94,94,94,94,94,94,94,94,94,94,94,78,72,72,72,72,70
  880.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,83
  881.                 DB 76,75,83,95,95,95,95,95,95,95,95,95,95,83,72,68,0,0,0,66,95
  882.                 DB 95,95,95,95,95,95,83,75,0,0,0,0,0,95,95,95,95,95,95,95,95
  883.                 DB 70,0,0,0,0,0,0,0,93,95,95,95,95,95,95,95,95,95,90,0,0,0,0
  884.                 DB 0,0,0,0,0,0,0,0,68,70,95,95,95,95,95,95,95,95,95,95,95,95
  885.                 DB 0,0,0,0,0,66,72,72,72,72,92,95,95,95,95,95,95,93,0,0,0,0,0
  886.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,70,70,70,72,72,76,95,95
  887.                 DB 95,95,95,95,93,93,94,94,94,94,94,93,93,92,92,87,65,0,0,0,0
  888.                 DB 65,80,90,92,92,92,92,92,93,92,93,93,93,93,94,94,94,94,94,94
  889.                 DB 94,94,94,94,94,94,76,72,72,72,72,95,95,95,95,95,95,95,95,95
  890.                 DB 95,95,95,95,95,95,95,95,95,95,76,76,76,83,95,95,95,95,95,95
  891.                 DB 95,95,95,95,95,72,72,66,0,0,0,95,95,95,95,95,95,95,83,72,66
  892.                 DB 0,0,0,66,95,95,95,95,95,95,95,95,70,0,0,0,0,0,0,67,95,95,95
  893.                 DB 95,95,95,95,95,95,95,95,66,0,0,0,0,0,0,0,0,0,0,0,70,72,95
  894.                 DB 95,95,95,95,95,95,95,95,95,95,95,67,0,0,0,0,0,72,72,72,72
  895.                 DB 83,95,95,95,95,95,95,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  896.                 DB 0,0,0,68,72,72,72,72,72,72,94,95,95,95,95,95,92,72,72,83,94
  897.                 DB 94,94,94,93,93,92,92,92,69,0,0,0,65,80,90,92,92,92,92,92,92
  898.                 DB 93,92,93,93,93,93,94,94,94,94,94,94,94,94,94,94,94,95,92,75
  899.                 DB 72,72,75,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  900.                 DB 95,95,76,76,75,83,95,95,95,95,95,95,95,95,95,95,95,88,72,70
  901.                 DB 0,0,0,90,95,95,95,95,95,95,83,72,67,0,0,0,68,95,95,95,95,95
  902.                 DB 95,95,95,68,0,0,0,0,0,0,80,95,95,95,95,95,95,95,95,95,95,95
  903.                 DB 69,0,0,0,0,0,0,0,0,0,0,66,70,76,95,95,95,95,95,95,95,95,95
  904.                 DB 95,95,95,80,0,0,0,0,0,72,72,72,72,83,95,95,95,95,95,95,74
  905.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,72,72,72,72,72,76
  906.                 DB 83,95,95,95,95,95,95,83,72,75,75,78,94,94,94,93,93,92,92,92
  907.                 DB 84,0,0,65,80,90,90,92,92,92,92,92,92,92,90,76,72,72,83,94
  908.                 DB 94,94,94,94,94,94,94,94,94,95,95,95,86,76,75,78,95,95,95,95
  909.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,76,76,75,83,95
  910.                 DB 95,95,95,95,95,95,95,95,95,95,95,75,72,67,0,0,82,95,95,95
  911.                 DB 95,95,95,88,75,67,0,0,0,68,95,95,95,95,95,95,95,95,68,0,0
  912.                 DB 0,0,0,0,95,95,95,95,95,95,95,95,95,95,95,95,85,0,0,0,0,0,0
  913.                 DB 0,0,0,0,67,72,88,95,95,95,95,95,95,95,95,95,95,95,95,95,0
  914.                 DB 0,0,0,0,72,72,72,75,83,95,95,95,95,95,95,74,0,0,0,0,0,0,0
  915.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,72,72,75,75,76,76,76,88,95,95,95,95
  916.                 DB 95,95,76,76,76,76,76,83,94,94,93,93,92,93,92,92,65,0,71,90
  917.                 DB 90,90,92,92,92,92,92,92,83,72,72,72,72,72,76,94,94,94,94,94
  918.                 DB 94,94,94,94,95,94,87,78,72,75,78,95,95,95,95,95,95,95,95,95
  919.                 DB 95,95,95,95,95,95,95,95,95,95,76,76,75,83,95,95,95,95,95,95
  920.                 DB 95,95,95,95,95,95,88,72,70,0,0,73,95,95,95,95,95,95,92,75
  921.                 DB 67,0,0,0,74,95,95,95,95,95,95,95,95,67,0,0,0,0,0,69,95,95
  922.                 DB 95,95,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,68,72
  923.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,67,0,0,0,0,70,72
  924.                 DB 72,75,75,95,95,95,95,95,95,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  925.                 DB 0,0,0,0,0,75,76,75,76,76,76,76,86,95,95,95,95,95,95,76,76
  926.                 DB 76,76,78,78,92,94,94,93,93,93,92,92,67,65,90,90,90,90,92,92
  927.                 DB 92,92,87,75,72,72,72,72,72,72,72,87,94,94,94,85,83,76,71,69
  928.                 DB 68,68,68,68,68,68,76,95,95,95,95,94,78,73,69,69,71,76,76,76
  929.                 DB 76,76,76,76,76,78,72,76,75,83,95,95,95,95,95,95,95,95,95,95
  930.                 DB 95,95,95,75,72,67,0,68,95,95,95,95,95,95,92,75,67,0,0,0,74
  931.                 DB 95,95,95,95,95,95,95,92,67,0,0,0,0,0,84,95,95,95,95,95,95
  932.                 DB 95,95,95,95,95,95,95,69,0,0,0,0,0,0,0,0,65,72,72,95,95,95
  933.                 DB 95,95,95,95,95,95,95,95,95,95,95,80,0,0,0,0,70,72,72,75,75
  934.                 DB 95,95,95,95,95,95,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  935.                 DB 75,75,76,76,76,76,76,86,95,95,95,95,95,95,76,78,76,78,83,83
  936.                 DB 88,94,94,93,93,92,92,92,67,67,90,90,90,90,92,92,92,83,72,72
  937.                 DB 72,72,72,72,72,72,71,70,68,67,67,67,67,67,67,67,67,67,67,67
  938.                 DB 67,67,71,95,95,95,95,88,76,76,76,75,75,68,66,66,66,66,66,66
  939.                 DB 66,66,66,66,68,83,95,95,95,95,95,95,95,95,95,95,95,95,95,94
  940.                 DB 72,72,0,67,95,95,95,95,95,95,92,75,68,0,0,0,89,95,95,95,95
  941.                 DB 95,95,95,92,67,0,0,0,0,66,95,95,95,95,95,95,95,95,95,95,95
  942.                 DB 95,95,95,87,0,0,0,0,0,0,0,0,67,72,83,95,95,95,95,95,95,95
  943.                 DB 95,95,95,95,95,95,95,95,0,0,0,0,68,72,72,75,75,95,95,95,95
  944.                 DB 95,95,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,75,76,76
  945.                 DB 76,76,78,83,95,95,95,95,95,95,76,76,78,78,76,78,88,94,94,93
  946.                 DB 93,92,92,92,67,69,90,90,90,90,92,92,83,72,72,73,72,72,72,72
  947.                 DB 72,71,68,65,0,0,0,0,66,66,66,66,66,66,0,0,0,0,70,95,95,95
  948.                 DB 95,83,76,76,76,76,75,67,0,0,0,0,0,66,67,0,0,0,0,0,95,95,95
  949.                 DB 95,95,95,95,95,95,95,95,95,95,95,78,72,68,0,95,95,95,95,95
  950.                 DB 95,94,75,68,0,0,0,93,95,95,95,95,95,95,95,88,66,0,0,0,0,70
  951.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0
  952.                 DB 0,68,72,92,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,67
  953.                 DB 0,0,0,68,72,75,75,75,95,95,95,95,95,95,68,0,0,0,0,0,0,0,0
  954.                 DB 0,0,0,0,0,0,0,0,0,0,0,72,75,76,76,76,76,78,78,95,95,95,95
  955.                 DB 95,95,76,76,75,75,75,76,92,94,94,93,93,92,92,87,0,69,90,90
  956.                 DB 90,92,92,86,76,76,75,75,75,75,73,72,72,67,0,0,0,0,0,0,0,0
  957.                 DB 0,0,0,0,0,0,0,0,85,95,95,95,95,78,76,76,76,76,75,66,66,68
  958.                 DB 71,87,95,95,83,76,70,68,67,0,95,95,95,95,95,95,95,95,95,95
  959.                 DB 95,95,95,95,95,83,70,66,94,95,95,95,95,95,95,75,68,0,0,0,94
  960.                 DB 95,95,95,95,95,95,95,83,0,0,0,0,0,95,95,95,95,95,95,95,95
  961.                 DB 70,95,95,95,95,95,95,95,67,0,0,0,0,0,0,0,70,72,95,95,95,95
  962.                 DB 95,95,95,95,83,95,95,95,95,95,95,95,71,0,0,0,68,72,75,75,75
  963.                 DB 95,95,95,95,95,95,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  964.                 DB 70,76,76,76,76,76,76,78,94,95,95,95,95,94,72,72,72,72,72,83
  965.                 DB 94,94,94,93,93,92,92,71,0,76,90,90,90,92,92,86,76,75,75,75
  966.                 DB 75,75,73,78,70,67,67,70,70,70,70,70,70,70,70,69,68,68,67,66
  967.                 DB 0,0,85,95,95,95,94,78,76,83,86,90,94,95,95,95,95,95,95,95
  968.                 DB 83,76,76,75,75,0,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  969.                 DB 95,95,90,70,92,95,95,95,95,95,95,75,68,0,0,0,95,95,95,95,95
  970.                 DB 95,95,95,83,0,0,0,0,67,95,95,95,95,95,95,95,95,66,92,95,95
  971.                 DB 95,95,95,95,80,0,0,0,0,0,0,65,72,72,95,95,95,95,95,95,95,95
  972.                 DB 72,92,95,95,95,95,95,95,95,0,0,0,67,72,75,75,75,95,95,95,95
  973.                 DB 95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,76,76,76
  974.                 DB 76,76,76,78,94,95,92,83,72,72,70,70,70,70,76,94,94,94,94,93
  975.                 DB 93,92,92,67,0,76,90,90,90,92,92,88,76,75,75,75,75,73,73,87
  976.                 DB 94,94,94,94,94,94,94,94,94,94,94,92,76,76,76,76,75,72,92,95
  977.                 DB 95,95,94,94,95,95,95,95,95,95,95,95,95,95,95,95,83,76,76,75
  978.                 DB 75,0,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  979.                 DB 92,95,95,95,95,95,95,75,70,0,0,0,95,95,95,95,95,95,95,95,76
  980.                 DB 0,0,0,0,80,95,95,95,95,95,95,95,94,66,74,95,95,95,95,95,95
  981.                 DB 95,0,0,0,0,0,0,67,72,83,95,95,95,95,95,95,95,95,72,83,95,95
  982.                 DB 95,95,95,95,95,67,0,0,67,75,75,75,75,94,95,95,95,95,95,0,0
  983.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,76,76,76,72,72,70,68
  984.                 DB 68,67,69,70,70,70,70,70,72,90,94,94,94,94,94,93,93,92,74,0
  985.                 DB 0,90,90,90,90,92,92,92,78,75,75,75,75,73,73,78,94,94,94,94
  986.                 DB 94,94,94,94,94,94,94,92,76,76,76,76,75,75,95,95,95,95,95,95
  987.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,83,76,76,75,75,0,95,95
  988.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  989. ; from here
  990.                 DB 95,95,95,95,95,95,95,95,76,72,0,0,67,95,95,95,95,95,95,95
  991.                 DB 95,72,0,0,0,0,95,95,95,95,95,95,95,95,74,66,68,95,95,95,95
  992.                 DB 95,95,95,67,0,0,0,0,0,68,72,94,95,95,95,95,95,95,95,86,72
  993.                 DB 72,95,95,95,95,95,95,95,71,0,0,67,75,75,75,75,94,95,95,95
  994.                 DB 95,95,0,0,0,0,0,0
  995. ; to here was missing.  90 values missing and , was at end of last 95 above
  996.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,65,68,69,70,70
  997.                 DB 70,70,70,83,94,94,94,94,94,94,94,93,93,82,65,0,0,90,90,90
  998.                 DB 90,92,92,92,83,76,75,75,75,73,73,72,92,94,94,94,94,94,94,94
  999.                 DB 94,94,94,92,76,76,76,76,75,75,95,95,95,95,95,95,95,95,95,95
  1000.                 DB 95,95,95,95,95,95,95,95,83,76,76,75,75,0,95,95,95,95,95,95
  1001.                 DB 95,95,83,94,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,76
  1002.                 DB 72,0,0,68,95,95,95,95,95,95,95,95,72,0,0,0,69,95,95,95,95
  1003.                 DB 95,95,95,95,68,0,67,95,95,95,95,95,95,95,80,0,0,0,0,0,70,72
  1004.                 DB 95,95,95,95,95,95,95,95,75,72,72,95,95,95,95,95,95,95,95,0
  1005.                 DB 0,0,75,75,75,75,88,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0
  1006.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,68,70,70,70,70,70,75,94,95
  1007.                 DB 95,94,94,94,94,94,94,93,73,65,0,0,0,90,90,90,90,92,92,92,90
  1008.                 DB 76,75,75,75,75,73,73,86,94,94,94,94,94,94,94,94,94,94,92,76
  1009.                 DB 76,76,76,75,76,95,95,95,95,83,83,73,78,86,78,71,71,87,90,90
  1010.                 DB 90,94,95,83,76,76,75,75,0,94,95,95,95,95,95,95,95,83,83,95
  1011.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,76,72,0,0,69,95
  1012.                 DB 95,95,95,95,95,95,95,68,0,0,0,90,95,95,95,95,95,95,95,95,0
  1013.                 DB 0,66,82,95,95,95,95,95,95,95,0,0,0,0,66,72,72,95,95,95,95
  1014.                 DB 95,95,95,90,72,72,72,88,95,95,95,95,95,95,95,67,0,0,75,75
  1015.                 DB 75,75,86,95,95,95,95,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1016.                 DB 0,0,0,0,0,0,0,66,68,70,70,70,70,70,72,86,95,95,95,95,94,94
  1017.                 DB 94,94,94,94,70,0,0,0,0,0,90,90,90,90,92,92,92,92,83,76,75
  1018.                 DB 75,75,75,73,78,94,94,94,94,94,94,94,94,94,94,92,76,76,76,76
  1019.                 DB 75,78,95,95,95,95,86,76,75,75,75,72,66,0,0,0,0,0,0,0,66,66
  1020.                 DB 67,67,68,0,89,95,95,95,95,95,95,95,83,76,92,95,95,95,95,95
  1021.                 DB 95,95,95,95,95,95,95,95,95,76,72,0,0,74,95,95,95,95,95,95
  1022.                 DB 95,95,68,0,0,66,95,95,95,95,95,95,95,95,95,0,0,65,69,95,95
  1023.                 DB 95,95,95,95,95,67,0,0,0,67,72,83,95,95,95,95,95,95,95,70,68
  1024.                 DB 72,72,75,95,95,95,95,95,95,95,71,0,0,75,75,75,75,86,95,95
  1025.                 DB 95,95,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67
  1026.                 DB 70,70,70,70,72,72,76,95,95,95,95,95,95,94,94,94,94,90,68,0
  1027.                 DB 0,0,0,0,0,90,90,90,90,92,92,92,92,92,83,76,75,75,75,75,73
  1028.                 DB 88,80,80,92,94,94,94,94,94,94,92,76,76,76,76,75,78,95,95,95
  1029.                 DB 95,94,76,76,76,75,75,69,0,0,0,0,0,0,0,0,0,0,0,0,0,89,95,95
  1030.                 DB 95,95,95,95,95,83,76,75,94,95,95,95,95,95,95,95,95,95,95,95
  1031.                 DB 95,95,76,75,0,0,74,95,95,95,95,95,95,95,95,68,0,0,71,95,95
  1032.                 DB 95,95,95,95,95,95,80,0,0,66,82,95,95,95,95,95,95,95,71,0,0
  1033.                 DB 0,68,72,94,95,95,95,95,95,95,95,67,67,72,75,92,95,95,95,95
  1034.                 DB 95,95,95,95,0,0,72,75,75,75,76,95,95,95,95,90,0,0,0,0,0,0
  1035.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,69,70,72,72,72,72,72,90,95
  1036.                 DB 95,95,95,95,95,94,94,94,94,84,66,0,0,0,0,0,0,0,90,90,90,90
  1037.                 DB 92,92,92,92,92,86,78,72,72,72,72,70,70,67,66,87,94,94,94,94
  1038.                 DB 94,94,92,76,76,76,76,75,83,95,95,95,95,95,88,76,76,75,75,72
  1039.                 DB 66,0,0,66,67,68,71,71,86,72,70,68,68,92,95,95,95,95,95,95
  1040.                 DB 95,83,76,75,72,93,95,95,95,95,95,95,95,95,95,95,95,95,83,75
  1041.                 DB 0,0,93,95,95,95,95,95,95,95,95,67,0,0,95,95,95,95,95,95,95
  1042.                 DB 95,95,69,67,76,95,95,95,95,95,95,95,95,95,95,0,0,0,72,72,95
  1043.                 DB 95,95,95,95,95,95,95,70,88,95,95,95,95,95,95,95,95,95,95,95
  1044.                 DB 67,0,72,75,75,75,75,95,95,95,95,74,0,0,0,0,0,0,0,0,0,0,0,0
  1045.                 DB 0,0,0,0,0,0,0,0,67,72,72,72,72,72,72,76,94,95,95,95,95,95
  1046.                 DB 95,95,94,94,94,70,0,0,0,0,0,0,0,0,0,88,90,90,90,90,92,92,92
  1047.                 DB 92,92,92,86,72,72,72,72,72,72,86,94,94,94,94,94,94,94,92,76
  1048.                 DB 76,76,76,75,86,95,95,95,95,95,95,83,83,87,87,94,88,95,95,95
  1049.                 DB 95,95,95,95,95,78,76,76,75,94,95,95,95,95,95,95,95,83,76,75
  1050.                 DB 70,66,93,95,95,95,95,95,95,95,95,95,95,95,86,75,0,0,93,95
  1051.                 DB 95,95,95,95,95,95,92,67,0,67,95,95,95,95,95,95,95,95,95,90
  1052.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,67,0,66,72,72,95,95,95
  1053.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,71,0
  1054.                 DB 70,75,75,75,75,95,95,95,95,74,0,0,0,0,0,0,0,0,0,65,66,66,66
  1055.                 DB 0,0,0,0,0,0,68,72,72,72,72,72,72,76,95,95,95,95,95,95,95,95
  1056.                 DB 95,94,92,67,0,0,0,0,0,0,0,0,0,0,88,90,90,90,90,92,92,92,92
  1057.                 DB 92,92,92,86,75,70,70,75,87,94,94,94,94,94,94,94,94,92,76,76
  1058.                 DB 76,76,75,86,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  1059.                 DB 95,95,95,95,86,76,76,75,94,95,95,95,95,95,95,95,83,76,75,70
  1060.                 DB 0,66,93,95,95,95,95,95,95,95,95,95,95,86,75,66,0,95,95,95
  1061.                 DB 95,95,95,95,95,92,67,0,85,95,95,95,95,95,95,95,95,95,95,95
  1062.                 DB 95,95,95,95,94,80,95,95,95,95,95,71,0,67,72,83,95,95,95,95
  1063.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,0,68
  1064.                 DB 75,75,75,75,95,95,95,95,74,0,0,0,66,67,68,69,69,70,78,90,95
  1065.                 DB 73,0,0,0,0,0,70,72,75,76,76,75,76,78,95,95,95,95,95,95,95
  1066.                 DB 95,95,95,94,94,94,94,94,94,93,93,92,92,92,87,0,82,90,90,90
  1067.                 DB 90,92,92,92,92,92,93,92,93,93,93,93,94,94,94,94,94,94,94,94
  1068.                 DB 94,94,92,76,76,76,76,75,90,95,95,95,95,95,95,95,95,95,95,95
  1069.                 DB 95,95,95,95,95,95,95,95,95,86,76,76,75,94,95,95,95,95,95,95
  1070.                 DB 95,83,76,75,70,0,0,66,93,95,95,95,95,95,95,95,95,95,86,75
  1071.                 DB 67,0,95,95,95,95,95,95,95,95,88,66,0,95,95,95,95,95,95,95
  1072.                 DB 95,95,95,95,95,95,85,69,66,65,67,95,95,95,95,95,90,0,68,72
  1073.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  1074.                 DB 95,95,95,67,68,75,75,75,75,95,95,95,95,69,67,68,70,70,70,72
  1075.                 DB 83,94,95,95,95,95,73,0,0,0,0,0,75,76,76,76,76,76,78,88,95
  1076.                 DB 95,95,95,95,95,95,95,95,95,94,94,94,94,94,94,93,93,92,92,92
  1077.                 DB 71,0,71,90,90,90,90,92,92,92,92,92,92,92,92,93,93,93,94,94
  1078.                 DB 94,94,94,94,94,94,94,94,92,76,76,76,76,75,92,95,95,95,95,95
  1079.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,86,76,76,75,94
  1080.                 DB 95,95,95,95,95,95,95,83,76,75,70,0,0,0,67,95,95,95,95,95,95
  1081.                 DB 95,95,95,88,75,67,66,95,95,95,95,95,95,95,95,83,0,69,95,95
  1082.                 DB 95,95,95,95,95,95,95,95,71,67,0,0,0,0,65,67,95,95,95,95,95
  1083.                 DB 95,66,72,72,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  1084.                 DB 95,95,95,95,95,95,95,71,68,75,75,75,75,95,95,95,95,75,70,70
  1085.                 DB 75,90,95,95,95,95,95,95,95,95,73,0,0,0,0,0,75,75,75,76,76
  1086.                 DB 76,78,88,95,95,95,95,95,95,95,95,95,94,94,94,94,94,94,93,93
  1087.                 DB 92,93,92,92,68,0,66,86,90,90,90,92,92,92,92,92,92,92,92,93
  1088.                 DB 93,93,94,94,94,94,94,94,94,94,94,94,92,76,76,76,76,75,92,95
  1089.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,86
  1090.                 DB 76,76,75,88,95,95,95,95,95,95,95,83,76,75,70,0,0,0,0,67,95
  1091.                 DB 95,95,95,95,95,95,95,92,76,67,68,95,95,95,95,95,95,95,95,83
  1092.                 DB 0,0,68,95,95,95,95,95,95,95,66,0,0,0,0,0,0,0,65,67,95,95,95
  1093.                 DB 95,95,95,74,72,75,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  1094.                 DB 92,92,95,95,95,95,95,95,95,95,67,75,75,75,75,92,95,95,95,92
  1095.                 DB 94,95,95,95,95,95,95,95,95,95,95,95,74,0,0,0,0,0,75,75,75
  1096.                 DB 75,76,76,76,88,95,95,95,95,95,95,95,95,95,94,94,94,94,94,94
  1097.                 DB 93,93,92,92,92,92,65,0,0,68,90,90,90,92,92,92,92,92,92,93
  1098.                 DB 92,93,93,93,93,94,94,94,92,92,94,94,94,94,92,76,76,76,76,75
  1099.                 DB 94,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  1100.                 DB 95,92,76,76,75,88,95,95,95,95,95,95,95,83,76,75,70,0,0,0,0
  1101.                 DB 0,67,95,95,95,95,95,95,95,92,76,67,66,86,95,95,95,95,95,95
  1102.                 DB 95,72,0,0,0,0,74,95,95,95,95,95,0,0,0,0,0,0,0,0,65,67,95,95
  1103.                 DB 95,95,95,95,78,72,88,95,95,95,95,95,95,95,95,95,80,69,67,72
  1104.                 DB 72,72,88,95,95,95,95,95,95,95,95,68,75,75,75,75,92,95,95,95
  1105.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,74,0,0,0,0,0,70,75
  1106.                 DB 75,75,75,76,76,83,95,95,95,95,95,95,95,95,95,94,94,94,94,94
  1107.                 DB 94,93,93,92,92,92,74,0,0,0,0,70,90,90,90,92,92,92,92,92,93
  1108.                 DB 92,93,93,93,93,94,94,83,70,83,94,94,94,94,92,76,76,76,76,75
  1109.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95
  1110.                 DB 95,92,76,76,75,88,95,95,95,95,95,95,95,83,76,75,70,0,0,0,0
  1111.                 DB 0,0,67,95,95,95,95,95,95,92,76,68,0,0,66,69,86,95,95,95,95
  1112.                 DB 72,0,0,0,0,0,66,93,95,95,71,0,0,0,0,0,0,0,0,65,67,95,95,95
  1113.                 DB 93,70,0,68,72,94,95,95,95,95,95,95,95,95,95,0,0,0,72,72,72
  1114.                 DB 92,95,95,95,95,95,95,95,95,74,72,75,75,75,92,95,95,95,95,95
  1115.                 DB 95,95,95,95,95,95,95,95,95,95,95,71,0,0,0,0,0,68,72,72,75
  1116.                 DB 75,75,76,76,95,95,95,95,95,95,95,95,94,94,94,94,94,94,93,93
  1117.                 DB 93,93,92,92,68,0,0,0,0,0,71,90,90,92,92,92,92,92,92,92,92
  1118.                 DB 93,93,92,78,68,68,68,75,94,94,94,94,92,76,76,76,76,70,95,95
  1119.                 DB 95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,92
  1120.                 DB 76,76,72,86,95,95,95,95,95,95,95,83,76,72,68,0,0,0,0,0,0,0
  1121.                 DB 66,82,95,95,95,95,92,76,68,0,0,0,0,0,66,69,93,95,68,0,0,0
  1122.                 DB 0,0,0,0,69,95,66,0,0,0,0,0,0,0,0,65,67,95,84,67,0,0,0,68,72
  1123.                 DB 95,95,95,95,95,95,95,95,95,95,67,0,67,72,72,72,95,95,95,95
  1124.                 DB 95,95,95,95,95,95,72,72,75,75,83,95,95,95,95,95,95,95,95,95
  1125.                 DB 95,95,95,95,95,95,95,71,0,0,0,0,0,66,70,72,72,75,75,75,76
  1126.                 DB 94,95,95,95,95,95,95,95,94,94,94,94,94,94,93,93,92,92,92,92
  1127.                 DB 65,0,0,0,0,0,0,70,90,92,92,92,92,92,92,92,90,78,69,67,67,67
  1128.                 DB 67,66,67,67,67,67,67,67,67,0,0,0,67,95,95,95,95,95,95,95,95
  1129.                 DB 95,95,95,95,95,95,95,93,85,82,71,71,68,67,65,0,0,66,68,68
  1130.                 DB 68,68,68,68,68,66,0,0,0,0,0,0,0,0,0,0,0,0,67,90,95,95,95,76
  1131.                 DB 68,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0
  1132.                 DB 0,0,66,66,0,0,0,0,0,0,66,69,80,95,95,95,95,95,95,95,95,84
  1133.                 DB 0,68,72,72,72,95,95,95,95,95,95,95,93,74,69,72,72,75,75,83
  1134.                 DB 95,95,95,95,95,95,95,95,94,90,90,76,73,73,69,68,66,0,0,0,0
  1135.                 DB 0,0,0,0,66,66,67,67,68,68,76,87,94,95,95,95,94,94,94,94,94
  1136.                 DB 94,94,93,93,92,92,92,74,0,0,0,0,0,0,0,0,66,71,77,85,77,74
  1137.                 DB 69,67,66,66,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,95,95,95
  1138.                 DB 95,95,95,86,84,76,70,70,67,67,65,0,0,0,0,0,0,0,0,0,0,0,0,0
  1139.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,95,95,76,68,0
  1140.                 DB 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
  1141.                 DB 0,0,0,0,0,0,0,0,0,0,0,67,70,84,95,95,95,95,95,0,67,70,72,72
  1142.                 DB 95,95,93,74,69,66,0,0,0,0,0,0,67,67,69,74,74,68,68,68,0,0
  1143.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,67,67
  1144.                 DB 68,71,82,93,94,94,94,94,94,93,93,92,93,92,92,68,0,0,0,0,0
  1145.                 DB 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
  1146.                 DB 66,70,68,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1147.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,67,0,0
  1148.                 DB 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
  1149.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,71,90,95,69,0,0,0,66,66,0
  1150.                 DB 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
  1151.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,66,66,67,67,68,71,78
  1152.                 DB 92,94,93,93,92,92,92,92,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1153.                 DB 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
  1154.                 DB 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
  1155.                 DB 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
  1156.                 DB 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
  1157.                 DB 0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1158.                 DB 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
  1159.                 DB 0,0,0,0,65,66,66,66,67,68,70,78,88,92,92,74,0,0,0,0,0,0,0
  1160.                 DB 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
  1161.                 DB 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
  1162.                 DB 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
  1163.                 DB 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
  1164.                 DB 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
  1165.                 DB 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
  1166.                 DB 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,65,67,69,67,0
  1167.                 DB 0,0,0
  1168.                 DB 228 DUP (?)
  1169.  
  1170. CODE    ENDS                                    ; End of code
  1171.  
  1172.         END     Start
  1173.